Loading

摘要: 题目链接:387.字符串的第一个唯一字符 代码: class Solution { public int firstUniqChar(String s) { int[] map = new int[26]; for(char c : s.toCharArray()){ map[c - 'a'] ++ 阅读全文
posted @ 2020-12-23 21:31 yoyuLiu 阅读(52) 评论(0) 推荐(0) 编辑