240 发简信
IP属地:北京
  • 数组中的逆序对

    在数组中的两个数字,如果前面一个数字大于后面的数字,则这两个数字组成一个逆序对。输入一个数组,求出这个数组中的逆序对的总数P。并将P对1000000007取模的结果输出。 即...

  • 数组中元素出现次数超过一半

    题目描述数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。例如输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}。由于数字2在数组中出现了5次,超过数组...

  • 39. Combination Sum

    Given a set of candidate numbers (C) (without duplicates) and a target number (T), find...

  • javascript初探LeetCode之9.Palindrome Number

    题目 Determine whether an integer is a palindrome. Do this without extra space. 分析 这是leet...

  • vue中使用express+fetch获取本地json文件

    自己在做个vue小demo的时候,想模拟从服务器获取json数据的过程,一开始的想法是使用fetch直接获取本地的json文件,无论是install了json-loader还...

  • javascript初探LeetCode之7.Reverse Integer

    题目 Reverse digits of an integer.The input is assumed to be a 32-bit signed integer. You...

  • javascript初探LeetCode之5.Longest Palindromic Substring

    题目 Given a string s, find the longest palindromic substring in s. You may assume that t...

  • javascript初探LeetCode之4.Median of Two Sorted Arrays

    题目 There are two sorted arrays nums1 and nums2 of size m and n respectively.Find the me...

  • javascript初探LeetCode之3.Longest Substring Without Repeating Characters

    题目 Given a string, find the length of the longest substring without repeating character...

  • javascript初探LeetCode之2.Add Two Numbers

    题目 You are given two non-empty linked lists representing two non-negative integers. The...

  • javascript初探LeetCode之1.TwoSum

    题目 Given an array of integers, return indices of the two numbers such that they add up ...

  • 你不知道的javascript之原型prototype(入门级)

    Prototype Prototype是Javascript对象内置的一个特殊属性,这个属性其实就是对其他对象的引用。当你试图访问一个对象的某个属性时,会触发[[get]]操...

  • 你不知道的javascript之闭包(入门级)

    闭包是js中一个重要但对小白来说又是很难搞懂的一个概念。希望这篇文章可以给那些像我一样还是小白的同学一个入门,先给出闭包的定义:** 当函数可以记住并访问所在的词法作用域时,...