返回介绍

solution / 0300-0399 / 0387.First Unique Character in a String / README_EN

发布于 2024-06-17 01:04:01 字数 3463 浏览 0 评论 0 收藏 0

387. First Unique Character in a String

中文文档

Description

Given a string s, _find the first non-repeating character in it and return its index_. If it does not exist, return -1.

 

Example 1:

Input: s = "leetcode"
Output: 0

Example 2:

Input: s = "loveleetcode"
Output: 2

Example 3:

Input: s = "aabb"
Output: -1

 

Constraints:

  • 1 <= s.length <= 105
  • s consists of only lowercase English letters.

Solutions

Solution 1

class Solution:
  def firstUniqChar(self, s: str) -> int:
    cnt = Counter(s)
    for i, c in enumerate(s):
      if cnt[c] == 1:
        return i
    return -1
class Solution {
  public int firstUniqChar(String s) {
    int[] cnt = new int[26];
    int n = s.length();
    for (int i = 0; i < n; ++i) {
      ++cnt[s.charAt(i) - 'a'];
    }
    for (int i = 0; i < n; ++i) {
      if (cnt[s.charAt(i) - 'a'] == 1) {
        return i;
      }
    }
    return -1;
  }
}
class Solution {
public:
  int firstUniqChar(string s) {
    int cnt[26]{};
    for (char& c : s) {
      ++cnt[c - 'a'];
    }
    int n = s.size();
    for (int i = 0; i < n; ++i) {
      if (cnt[s[i] - 'a'] == 1) {
        return i;
      }
    }
    return -1;
  }
};
func firstUniqChar(s string) int {
  cnt := [26]int{}
  for _, c := range s {
    cnt[c-'a']++
  }
  for i, c := range s {
    if cnt[c-'a'] == 1 {
      return i
    }
  }
  return -1
}
function firstUniqChar(s: string): number {
  const cnt = new Array(26).fill(0);
  for (const c of s) {
    cnt[c.charCodeAt(0) - 97]++;
  }
  for (let i = 0; i < s.length; i++) {
    if (cnt[s.charCodeAt(i) - 97] === 1) {
      return i;
    }
  }
  return -1;
}
/**
 * @param {string} s
 * @return {number}
 */
var firstUniqChar = function (s) {
  const cnt = new Array(26).fill(0);
  for (const c of s) {
    ++cnt[c.charCodeAt() - 'a'.charCodeAt()];
  }
  for (let i = 0; i < s.length; ++i) {
    if (cnt[s[i].charCodeAt() - 'a'.charCodeAt()] === 1) {
      return i;
    }
  }
  return -1;
};
class Solution {
  /**
   * @param String $s
   * @return Integer
   */
  function firstUniqChar($s) {
    for ($i = 0; $i < strlen($s); $i++) {
      $hashtable[$s[$i]]++;
    }
    for ($i = 0; $i < strlen($s); $i++) {
      if ($hashtable[$s[$i]] == 1) {
        return $i;
      }
    }
    return -1;
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文