摘要: // My own solutionclass Solution { public: vector<int> countBits(int num) { vector<int> ret = {0}; if(num <= 0) return ret; ret.push_back(1); int i = 阅读全文
posted @ 2016-09-25 11:52 blankquiz 阅读(151) 评论(0) 推荐(0)