2015年11月19日
摘要: public static int singleNumber(int[] nums) { int once = 0; int twice = 0; for (int i = 0; i < nums.length; i++) { twice |= once & nums... 阅读全文
posted @ 2015-11-19 12:42 peterTong 阅读(220) 评论(0) 推荐(0)