387.First-Unique-Character-in-a-String
387. First Unique Character in a String
题目地址
https://leetcode.com/problems/first-unique-character-in-a-string/
题目描述
Given a string, find the first non-repeating character in it and return it's index. If it doesn't exist, return -1.
Examples:
s = "leetcode"
return 0.
s = "loveleetcode",
return 2.
Note: You may assume the string contain only lowercase letters.代码
Approach #1 Linear time solution
Complexity Analysis
Time complexity : O(N) since we go through the string of length
Ntwo times.Space complexity : O(N) since we have to keep a hash map with
Nelements.
#2
Last updated
Was this helpful?