摘要:
https://leetcode-cn.com/problems/er-cha-shu-zhong-he-wei-mou-yi-zhi-de-lu-jing-lcof/ class Solution { LinkedList<List<Integer>> res = new LinkedList<> 阅读全文
摘要:
https://leetcode-cn.com/problems/add-digits/ 使用递归就行 class Solution { public int addDigits(int num) { if(num < 10) return num; int next = 0; while(num 阅读全文