摘要: public class Solution { public ListNode addTwoNumbers(ListNode l1, ListNode l2) { ListNode dummy = new ListNode(-1); ListNode cur = dummy; int carry = 阅读全文
posted @ 2017-01-26 23:54 王坤1993 阅读(153) 评论(0) 推荐(0) 编辑
摘要:  public class Solution { public int[] twoSum(int[] numbers, int target) { HashMap<Integer, Integer> map = new HashMap<Integer, Integer>(); int[] 阅读全文
posted @ 2017-01-26 00:03 王坤1993 阅读(141) 评论(0) 推荐(0) 编辑