摘要: Question 1: Two Sum 1 class Solution { 2 public: 3 vector twoSum(vector &numbers, int target) { 4 // Start typing your C/C++ solution below 5 // DO NOT write int main() function 6 vector res; 7 vector::size_type index1, index2; 8 9 for (index1 = 0... 阅读全文
posted @ 2013-09-05 22:03 neil90 阅读(223) 评论(0) 推荐(0) 编辑