2023年3月7日
摘要: 454. 四数相加 II class Solution { public: int fourSumCount(vector<int>& nums1, vector<int>& nums2, vector<int>& nums3, vector<int>& nums4) { unordered_map 阅读全文
posted @ 2023-03-07 22:09 小黑哈哈 阅读(678) 评论(0) 推荐(0) 编辑
摘要: 3. 无重复字符的最长子串 class Solution { public: int lengthOfLongestSubstring(string s) { unordered_map<char, int> map; int ans = 0; for(int start = 0, end = 0; 阅读全文
posted @ 2023-03-07 15:17 小黑哈哈 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 2. 两数相加 /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode() : val(0), next(nullptr) {} * ListNode(i 阅读全文
posted @ 2023-03-07 09:28 小黑哈哈 阅读(10) 评论(0) 推荐(0) 编辑