摘要:
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 ex 阅读全文
摘要:
Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the arr 阅读全文
摘要:
1.json JSON是一种传输数据的格式(以对象为样板,本质上就是对象,但用途有区别,对象就是本地用的,json是用来传输的) JSON.parse() string > json JSON.stringify() json > string 2.异步加载js js加载的缺点:加载工具方法没必要阻 阅读全文
摘要:
1.思想: 递归调用是用相同的方法去解决更小的问题,直到问题规模小于或等于某个边界条件时,不再进行递归(递归的出口),而是直接处理,然后不断向下执行函数返回结果。 2.分治法 1.当问题小到一定规模时,可以直接求解; 2.当问题规模较大时,可以分解为若干个相互独立的子问题,这些子问题与原问题具有相同 阅读全文