Web API 基本认知
变量声明
1.变量声明有三个 var let 和 constl 我们应该用那个呢?首先var 先排除,老派写法,问题很多,可以淘汰掉…2. let or const ? 建议: const 优先,尽量使用const,原因…
解题思路: class Solution {public List<Integer> partitionLabels(String s) {int[] last new int[26];int len s.length();for (int i 0; i < len; i) {last[s.charAt(i) - a] i;//记录字母最远的下标}List<Integer> partition new ArrayList…