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 小黑哈哈 阅读(682) 评论(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 小黑哈哈 阅读(11) 评论(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 小黑哈哈 阅读(15) 评论(0) 推荐(0) 编辑
  2023年3月6日
摘要: 242. 有效的字母异位词 class Solution { public: bool isAnagram(string s, string t) { int result[26] = {0}; for(int i = 0; i < s.size(); i++){ result[s[i] - 'a' 阅读全文
posted @ 2023-03-06 21:29 小黑哈哈 阅读(96) 评论(0) 推荐(0) 编辑
摘要: 24. 两两交换链表中的节点 /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode() : val(0), next(nullptr) {} * Lis 阅读全文
posted @ 2023-03-06 20:55 小黑哈哈 阅读(985) 评论(0) 推荐(0) 编辑
摘要: 203. 移除链表元素 /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode() : val(0), next(nullptr) {} * ListNo 阅读全文
posted @ 2023-03-06 17:32 小黑哈哈 阅读(12) 评论(0) 推荐(0) 编辑
  2023年3月2日
摘要: LeetCode 977.有序数组的平方 链接:https://leetcode.cn/problems/squares-of-a-sorted-array/ class Solution { public: vector<int> sortedSquares(vector<int>& nums) 阅读全文
posted @ 2023-03-02 21:48 小黑哈哈 阅读(8) 评论(0) 推荐(0) 编辑
  2023年3月1日
摘要: LeetCode 704 二分查找 链接:https://leetcode.cn/problems/binary-search/ 点击查看代码 class Solution { public: int search(vector<int>& nums, int target) { if(nums.s 阅读全文
posted @ 2023-03-01 21:08 小黑哈哈 阅读(160) 评论(0) 推荐(0) 编辑
  2023年2月10日
摘要: 今天跑代码的时候一直报这个错 虽然不影响结果,但是很影响调试代码。 最终发现是在求loss的时候将mask设置成了ByteTensor,而报错提示用bool类型,于是改成BoolTensor之后程序正常运行。 阅读全文
posted @ 2023-02-10 10:26 小黑哈哈 阅读(221) 评论(0) 推荐(0) 编辑
  2022年4月9日
摘要: 明明已经对超过512长度的序列做了处理,但这个怎么都处理不了,经过检查发现在对子句之间添加[SEP]标记时,错误的将[SEP]写成了[sep],致使电脑在识别的时候无法将[sep]识别出来,而是识别成了[ , s , e , p , ] 这几个分开的,所以长度比正常的长而且代码也无法精简到512(虽 阅读全文
posted @ 2022-04-09 10:51 小黑哈哈 阅读(1183) 评论(3) 推荐(0) 编辑