摘要:
4月 21日 1 7 Reverse Integer 先算新结果,与旧结果比较,如果不等 返回0 public int reverse(int x) { int result = 0; while (x != 0) { int tail = x % 10; int newR = result * 1 阅读全文
摘要:
4月3号 1. 1 Two Sum bugfree public int[] twoSum(int[] numbers, int target) { int[] result = new int[2]; Map<Integer, Integer> map = new HashMap<Integer, 阅读全文
摘要:
1. Intersection of two arrays 一个hash表存一数组,一hash表存结果 1 public int[] intersection(int[] nums1, int[] nums2) { 2 // Write your code here 3 HashSet<Intege 阅读全文
摘要:
1 Remove Element lintcode-172 描述: 删相同元素,反现有长度 记忆:标不同元素,反标记值 1 public int removeElement(int[] a, int elem) { 2 // write your code here 3 int index = 0; 阅读全文