博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
First Unique Character in a String(leetcode387)
阅读量:6569 次
发布时间:2019-06-24

本文共 628 字,大约阅读时间需要 2 分钟。

hot3.png

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.

这里写都是小写字母,如果还有其他奇怪的字符,那么我就选择使用Map来处理,和使用数组也是类似的

ublic static int firstUniqChar(String s) {    int[] arr = new int[26];    for(int i =0;i

 

public static void main(String[] args) {    System.out.println(firstUniqChar("leetcode"));    System.out.println(firstUniqChar("loveleetcode"));}

输出:

7700a83fd2625a6ee1155a50ac29d494cd5.jpg

git:https://github.com/woshiyexinjie/leetcode-xin

转载于:https://my.oschina.net/u/2277632/blog/2998937

你可能感兴趣的文章
String Format
查看>>
缺少mfc100.lib等lib问题和nafxcw.lib与LIBCMT.lib链接冲突问题
查看>>
linux 目录结构及文件基本操作
查看>>
WiFi信号强度--SIGNAL_POLL
查看>>
[Android]Terminal 下编译,小心编译目录的移动
查看>>
Redis-3.2.0集群配置(redis cluster)
查看>>
Java 面试题目小结(未完待续)
查看>>
CentOS 7安装 Gitlab
查看>>
spring自动装配失败
查看>>
Understanding the Linux Kernel
查看>>
jndi
查看>>
HTML5知多少
查看>>
天真贝叶斯学习机 | TiDB Hackathon 优秀项目分享
查看>>
救火队员的一天
查看>>
httpd
查看>>
Docker打包镜像 并且推送到阿里云
查看>>
Oracle——12异常
查看>>
Oracle——16用户、角色和权限
查看>>
分布式OSSIM系统的控制中心
查看>>
获得系统属性
查看>>