1. 第一个只出现一次的字符
class Solution { public int firstUniqChar(String s) {int[] count new int[256];// 统计每个字符出现的次数for(int i 0; i < s.length(); i){count[s.charAt(i)];}// 找第一个只出现一次的字符for(int i 0; i < s.length(); i){if(1 …
1、下载chromedriver
chromedriver下载网址:CNPM Binaries Mirror
老版本在:chromedriver/
较新版本在:chrome-for-testing/ 2、设置了环境变量还是找不到chromedriverUnable to obtain driver for chrome using
NoSuchDriverException:…