auto commit

This commit is contained in:
CyC2018 2018-03-19 17:26:23 +08:00
parent 1d80d9c7e8
commit 4f61848ebe

View File

@ -2021,6 +2021,12 @@ public int GetUglyNumber_Solution(int N) {
# 50. 第一个只出现一次的字符位置
## 题目描述
在一个字符串 (1<=字符串长度 <=10000全部由字母组成) 中找到第一个只出现一次的字符,并返回它的位置。
## 解题思路
```java
public int FirstNotRepeatingChar(String str) {
int[] cnts = new int[256];