摘要:
https://leetcode.com/problems/product-of-array-except-self/#/description 在第一个循环中,记录当前的索引左侧的数字乘积,和当前的索引右侧的数字乘积。然后两部分乘积相乘,这样的思路比较简单,但是时间复杂度是O(n*n)。 本题的解 阅读全文
摘要:
https://leetcode.com/problems/single-number-iii/#/description 阅读全文
摘要:
https://leetcode.com/problems/sort-characters-by-frequency/#/description 补充一个python的实现: 阅读全文
摘要:
https://leetcode.com/problems/minimum-moves-to-equal-array-elements-ii/#/description 阅读全文
摘要:
https://leetcode.com/problems/subtree-of-another-tree/#/description 补充一个使用python的实现,思路就是使用二叉树的先序遍历,将节点和空节点存储到字符串中,然后比较t是否是s的字串。 执行效率还是比较高的。 再补充一个双层递归的 阅读全文
摘要:
https://leetcode.com/problems/reshape-the-matrix/#/description 阅读全文
摘要:
https://leetcode.com/problems/distribute-candies/#/description 阅读全文