摘要: Code:class Solution {public: int singleNumber(int A[], int n) { // Note: The Solution object is instantiated only once and is reused by each test case. int res = 0; int bit,i,j; for(i=0;i>i)&1==1) bit = (bit+1)%3; } if(bit!=... 阅读全文
posted @ 2013-10-23 02:40 WinsCoder 阅读(93) 评论(0) 推荐(0) 编辑