博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1. 两数之和
阅读量:5924 次
发布时间:2019-06-19

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

解题思路:

第一个方法是穷举,第二个方法是利用Map做,第二个方法一开始没想到,还是有点太年轻。

代码:

第一个代码:

class Solution {    public int[] twoSum(int[] nums, int target) {        int[] ans = new int[2];        boolean flag = false;        for(int i=0;i

第二个代码:

class Solution {    public int[] twoSum(int[] nums, int target) {        Map
map = new HashMap<>(); for(int i=0;i

 

转载于:https://www.cnblogs.com/doubest/p/10467207.html

你可能感兴趣的文章
$resource in AngularJS
查看>>
java虚拟机学习笔记 【1】
查看>>
DUBBO笔记
查看>>
nginx php上传大文件的设置(php-fpm)
查看>>
MySQL 运行状态监控方法
查看>>
Fedora 12 环境下Gtk+开发环境配置
查看>>
vs2008中在解决方案资源管理器查看当前打开文件
查看>>
ubuntu14.04 鼠标闪烁问题
查看>>
jQuery Lightbox(balupton版)图片展示插件demo
查看>>
Elasticsearch集群的简单搭建
查看>>
SCRT-SSH传输文件
查看>>
Python非常cool的svg格式chart生成库pygal
查看>>
Telnet部署与启动 windows&&linux
查看>>
行列式的乘法定理
查看>>
有1000瓶水,3个瓶子可以再换1瓶,一共可以喝多少瓶?
查看>>
Search in Rotated Sorted Array ||
查看>>
NUC_HomeWork1 -- POJ2067(最短路)
查看>>
卸载mysql
查看>>
二叉树的遍历
查看>>
The Distinguish of the share or static lib in MFC
查看>>