美文网首页
ARTS打卡 第一周

ARTS打卡 第一周

作者: 凌熹 | 来源:发表于2019-04-28 20:59 被阅读0次

Algorithm

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.

答:

class Solution {

    public int[] twoSum(int[] nums, int target) {

        int[] answer = new int[2];

        HashMap<Integer, Integer> map = new HashMap<>();

        for (int i = 0; i < nums.length; ++i){

            map.put(nums[i], i);

        }

        for (int i = 0; i < nums.length; ++i){

            int b = target - nums[i];

            if (map.containsKey(b) && i != map.get(b))

                return new int[]{i, map.get(b)};

        }

        return answer;

    }

}


Review

How Browsers Work: Behind the scenes of modern web browsers - HTML5 Rocks

Learn how the browser works, but I need more time to finish this


TIP

在浏览器前端打开跨域链接,需要传递参数时,使用Windows.name和postMessage()


Share

新手向:Vue 2.0 的建议学习顺序

最近开始学习VUE,上述文章是VUE作者建议的新手学习VUE的顺序,下一阶段的学习以VUE为主

相关文章

  • ARTS打卡第一周

    ARTS打卡第一周 Algorithm:每周至少做一个 leetcode 的算法题 542. 01 矩阵 Revi...

  • ARTS打卡,第一周

    每周完成一个ARTS: 1.A(Algorithm)每周至少做一个 leetcode 的算法题 2.R(Revie...

  • ARTS打卡第一周

    Algorithm:至少做一个 LeetCode 的算法题。主要为了编程训练和学习。Review :阅读并点评至少...

  • ARTS打卡 第一周

    Algorithm 1.Two Sum Given an array of integers, returnind...

  • ARTS打卡第一周6.16

    Algorithm 经典题型:threeSum 给定一个包含 n 个整数的数组 nums,判断 nums 中是否存...

  • 【ARTS打卡计划】第一周

    A | Algorithm:每周至少做一个Leetcode算法题 比较两个版本号 题目: Compare two ...

  • KirogiYi ARTS打卡:第一周

    Algorithm(两数相加) 描述:给出两个非空的链表用来表示两个非负的整数。其中,它们各自的位数是按照 逆序 ...

  • ARTS 第一周打卡

    ARTS 目录 ✨ 坚持一周奖励自己一个鸡排吃!✨ 第一周(11-24 至 11-29) A: 题目:只出现一次的...

  • ARTS第一周打卡

    所谓A(Algorithm)R(Review)T(Tips)S(Share):每周至少做一个 leetcode 的...

  • ARTS 打卡 5

    Algorithm Leet code 899 有序队列 困难 一开始理解错了题目了,后来理解题目以后,发现只需...

网友评论

      本文标题:ARTS打卡 第一周

      本文链接:https://www.haomeiwen.com/subject/zixsnqtx.html