标签:des style blog color os io for ar
1 public int singleNumber(int[] A) { 2 int s=0; 3 for(int i=0;i<A.length;i++){ 4 s=s^A[i]; 5 } 6 return s; 7 }
leetcode--012 single number I,布布扣,bubuko.com
标签:des style blog color os io for ar
原文地址:http://www.cnblogs.com/thehappyyouth/p/3880655.html