摘要:
https://leetcode.com/submissions/detail/84675571/ 尺取法路过,尾指针在可以添加的时候向后,当有重复就把头指针向后挪。因为只有字符,判断重复直接拿数组搞掉。 阅读全文
摘要:
https://leetcode.com/problems/add-two-numbers/ 模拟高精度加法,传进来的是链表,可以稍微优化一下。 阅读全文
摘要:
https://leetcode.com/problems/reverse-string/ 纯属强迫症,写过的都想贴上来。 阅读全文
摘要:
https://leetcode.com/problems/two-sum/ 先排序,有序后枚举a,二分查找b,因为必然有解,直接找到就return。 阅读全文
摘要:
https://leetcode.com/problems/zigzag-conversion/ 模拟题,把每个点的做表转换公式求出来,直接遍历一下矩阵。 阅读全文