博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java LeetCode 1.Two Sum
阅读量:6494 次
发布时间:2019-06-24

本文共 552 字,大约阅读时间需要 1 分钟。

1. Two Sum

 

Given an array of integers, return indices of the two numbers such that they add up to a specific target.

You may assume that each input would have exactly one solution, and you may not use the same element twice.

 

   Example:

Given nums = [2, 7, 11, 15], target = 9, Because nums[0] + nums[1] = 2 + 7 = 9, return [0, 1]. Solution:
1 public class Solution { 2     public int[] twoSum(int[] nums, int target) { 3         int i,j; 4         int[] res = new int[]{0,1}; 5         for(i=0;i

 

转载于:https://www.cnblogs.com/forfriendforfun/p/6803836.html

你可能感兴趣的文章
Codeforces 814A - An abandoned sentiment from past(水题)
查看>>
POJ 2349 Arctic Network (最小生成树Kruskal)
查看>>
vmstat
查看>>
springboot集成mybatis-generator
查看>>
org.springframework.beans.NotWritablePropertyException
查看>>
【VB6】VB6实现拖拽
查看>>
delphi DateUtils强大的时间功能集成
查看>>
BZOJ-2743: [HEOI2012]采花(树状数组 or TLE莫队)
查看>>
菜鸟谈谈C#中的构造函数和析构函数
查看>>
2014-4-21
查看>>
【转】Python多进程编程
查看>>
旁注攻击介
查看>>
Android之Service与IntentService的比较
查看>>
Single Number
查看>>
Struts2部分
查看>>
2014-8-4阿里电话面试
查看>>
这些小工具让你的Android 开发更高效
查看>>
T-SQL注意事项(1)——SET NOCOUNT ON的去与留
查看>>
Spring4新的javaConfig注解
查看>>
移动端的交互设计软件JustinMind
查看>>