摘要:
代码 阅读全文
摘要:
最小窗口字串 参考 https://www.cnblogs.com/grandyang/p/4340948.html 可以用数组代替hashmap //unordered_map<char,int> letterCnt;vector letterCnt(256,0); 阅读全文
摘要:
经典题目:给定一个二叉搜索树,插入一个值为val的新节点 阅读全文
摘要:
列出所有可能的完全二叉树 阅读全文
摘要:
python解法 阅读全文
摘要:
A zero-indexed array A of length N contains all integers from 0 to N-1. Find and return the longest length of set S, where S[i] = {A[i], A[A[i]], A[A[ 阅读全文
摘要:
对于矩阵A(M*N) 行是否翻转。每一行的第一个数必须为1,因为它的相当于2^(N-1) 列是否翻转。 参考 https://leetcode.com/problems/score-after-flipping-matrix/discuss/143722/C++JavaPython-Easy-and 阅读全文