神TM 的杨辉三角 又是一道数学题 1. 不能从前遍历,因为这里只要输出一行的 ,会被覆盖 所以要从后面遍历。 所以第二个for循环 for(int j = res.size...
IP属地:广东
神TM 的杨辉三角 又是一道数学题 1. 不能从前遍历,因为这里只要输出一行的 ,会被覆盖 所以要从后面遍历。 所以第二个for循环 for(int j = res.size...
一开始想着就特别复杂,想用hashmap 和 array去做,写了20行 心累。 public class Solution { public String toHe...
每次在LC上看到tree的题 第一个想到的解法是递归。 public classSolution{ public TreeNode invertTree(TreeNod...