摘要:
学习算法problem407:“加一”问题 public class Solution { public int[] plusOne(int[] digits) { int carries = 1; for (int i = digits.length - 1; i >= 0 && carries 阅读全文
摘要:
1. problem25:打印X (备注:在学习算法题的过程中,如果一道题我直接通过了,我就不把它写到博客里了;只有我没做出来,或者我觉得其他人思路更好的,我学习然后不看答案手敲实现后,把它放到博客里) public class Solution { public List<String> prin 阅读全文