相关文章
LeetCode 290. 单词规律
思路:建立双射,判断是不是满射,和双射是否对应
代码:
class Solution {
public:bool wordPattern(string pattern, string s) {vector<string> words;stringstream ssin(s);string word;while(ssin>>word) words.pu…
建站知识
2025/1/21 18:37:41
290. 单词规律。
给定一种规律 pattern 和一个字符串 s ,判断 s 是否遵循相同的规律。
这里的 遵循 指完全匹配,例如, pattern 里的每个字母和字符串 s 中的每个非空单词之间存在着双向连接的对应规律。
示例1:
输入: pattern “abba”, s “dog cat cat…
建站知识
2025/1/21 18:43:42
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…
建站知识
2025/1/21 18:54:27
leetcode周赛290记录
T3 统计包含每个点的矩形数目 注意数据范围。纵坐标取值空间较小故在纵坐标维度上,对每个相同的纵坐标的横坐标进行排序。而不是反过来
class Solution {public:vector<int> countRectangles(vector<vector<int>>& rectangles, vector<ve…
建站知识
2025/1/21 18:37:51
深入理解Windows操作系统机制(三)
我是荔园微风,作为一名在IT界整整25年的老兵,今天我们来重新审视一下Windows这个我们熟悉的不能再熟悉的系统。
我们每天都在用Windows操作系统,但是其实我们每天直接在打交道的并不是Windows操作系统的内核,而是Windows操作系统…
建站知识
2024/12/13 5:36:18