2017年12月10日

LeetCode:15. 3Sum

摘要: 自己的解法,有问题,花费我三个小时 网上的解法 阅读全文

posted @ 2017-12-10 20:32 Michael2397 阅读(150) 评论(0) 推荐(0) 编辑

Leetcode:1. Two Sum

摘要: public class TwoSum1 { public static void main(String[] args) { int[] nums = new int[]{2, 7, 11, 15}; int target = 9; int a[] = new int[2]; a = twoSum(nums, targe... 阅读全文

posted @ 2017-12-10 17:00 Michael2397 阅读(129) 评论(0) 推荐(0) 编辑

导航