摘要:
Find the total area covered by tworectilinearrectangles in a2Dplane.Each rectangle is defined by its bottom left corner and top right corner as shown ... 阅读全文
posted @ 2015-06-08 22:07
puckpuck
阅读(373)
评论(0)
推荐(0)
摘要:
public class Solution { public int singleNumber(int[] nums) { int ret = nums[0]; for (int i = 1; i < nums.length; i++) { ret ^= nums[i]; ... 阅读全文
posted @ 2015-06-08 16:23
puckpuck
阅读(197)
评论(0)
推荐(0)
摘要:
public class Solution { public String addBinary(String a, String b) { int i = a.length()-1; int j = b.length()-1; int n = j>i?j:i; int su... 阅读全文
posted @ 2015-06-08 13:23
puckpuck
阅读(248)
评论(0)
推荐(0)
浙公网安备 33010602011771号