相关文章
LeetCode 290. 单词规律
思路:建立双射,判断是不是满射,和双射是否对应
代码:
class Solution {
public:bool wordPattern(string pattern, string s) {vector<string> words;stringstream ssin(s);string word;while(ssin>>word) words.pu…
建站知识
2024/12/23 5:39:52
290. 单词规律。
给定一种规律 pattern 和一个字符串 s ,判断 s 是否遵循相同的规律。
这里的 遵循 指完全匹配,例如, pattern 里的每个字母和字符串 s 中的每个非空单词之间存在着双向连接的对应规律。
示例1:
输入: pattern “abba”, s “dog cat cat…
建站知识
2024/10/28 23:56:12
Leetcode 第290场周赛
Leetcode 第290场周赛
这周是个菜狗
6041 多个数组求交集
class Solution:def intersection(self, nums: List[List[int]]) -> List[int]:dicts defaultdict(int)n len(nums)for num in nums:for items in num:dicts[items]1ans []for item in dicts:if dicts[item]n…
建站知识
2024/10/29 2:36:26
leetcode周赛290记录
T3 统计包含每个点的矩形数目 注意数据范围。纵坐标取值空间较小故在纵坐标维度上,对每个相同的纵坐标的横坐标进行排序。而不是反过来
class Solution {public:vector<int> countRectangles(vector<vector<int>>& rectangles, vector<ve…
建站知识
2024/10/29 2:59:28
深入理解Windows操作系统机制(三)
我是荔园微风,作为一名在IT界整整25年的老兵,今天我们来重新审视一下Windows这个我们熟悉的不能再熟悉的系统。
我们每天都在用Windows操作系统,但是其实我们每天直接在打交道的并不是Windows操作系统的内核,而是Windows操作系统…
建站知识
2024/12/13 5:36:18
matlab使用教程(2)—数组索引、工作区与字符
1数组索引 MATLAB 中的每个变量都是一个可包含许多数字的数组。如果要访问数组的选定元素,请使用索引。 例如,假设有 44 矩阵 A : A [1 2 3 4; 5 6 7 8; 9 10 11 12; 13 14 15 16] A 44 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 引…
建站知识
2024/10/29 19:19:23