摘要:
454. 四数相加 II class Solution { public: int fourSumCount(vector<int>& nums1, vector<int>& nums2, vector<int>& nums3, vector<int>& nums4) { unordered_map 阅读全文
摘要:
3. 无重复字符的最长子串 class Solution { public: int lengthOfLongestSubstring(string s) { unordered_map<char, int> map; int ans = 0; for(int start = 0, end = 0; 阅读全文
摘要:
2. 两数相加 /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode() : val(0), next(nullptr) {} * ListNode(i 阅读全文