码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode刷刷记录

时间:2016-04-06 00:16:44      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

一遍考研,一遍还是要刷刷题。感觉自己的时间安排的不是很好,还是要抓紧自己的日常时间,当然,也要练练刷题的手感。

1.第一题就两重循环找到索引就OK,因为是无序的,所以就不能用二分来查找,题目中每个数的下标是定死的,所以不能排序后再二分。真是太年轻,什么都想试试(4.5)

技术分享
 1 public class Solution {
 2     public int[] twoSum(int[] nums, int target) {
 3         int[] arr = new int[2];
 4         int cnt = 0;
 5         for(int i = 0; i < nums.length; ++i){
 6             for(int j = i+1; j < nums.length; ++j) {
 7                 if(nums[i] + nums[j] == target){
 8                     arr[cnt] = i;
 9                     cnt++;
10                     arr[cnt] = j;
11                     cnt++;
12                 }
13             }
14         }
15         return arr;
16     }
17 }
View Code

 

2.

LeetCode刷刷记录

标签:

原文地址:http://www.cnblogs.com/ya-cpp/p/5357487.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!