leet-code/src/main/java/leetcode/editor/cn/FirstUniqueCharacterInAString.md
2021-07-11 23:47:11 +08:00

526 B

给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。

 

示例:

s = "leetcode"
返回 0

s = "loveleetcode"
返回 2

 

提示:你可以假定该字符串只包含小写字母。

Related Topics
  • 队列
  • 哈希表
  • 字符串
  • 计数
  • \n
  • 👍 414
  • 👎 0