Leetcode 最长公共前缀 地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/5/strings/40/ 题目编写一个函数来查找字符串数组中的最长公共前缀。 2019-02-06 Leetcode #Leetcode #字符串
Leetcode 报数 地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/5/strings/39/ 题目报数序列是一个整数序列,按照其中的整数的顺序进行报数,得到下一个数。其前五项如下: 2019-02-06 Leetcode #Leetcode #字符串
Leetcode 实现strStr() 地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/5/strings/38/ 题目实现 strStr() 函数。 2019-02-06 Leetcode #Leetcode #字符串
Leetcode 字符串转换整数(atoi) 地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/5/strings/37/ 题目请你来实现一个 atoi 函数,使其能将字符串转换成整数。 2019-02-04 Leetcode #Leetcode #字符串
Leetcode 验证回文字符串 地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/5/strings/36/ 题目给定一个字符串,验证它是否是回文串,只考虑字母和数字字符,可以忽略字母的大小写。 2019-02-02 Leetcode #Leetcode #字符串
Leetcode 有效的字母异位词 地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/5/strings/35/ 题目给定两个字符串 s 和 t ,编写一个函数来判断 t 是否是 s 的一个字母异位词。 2019-02-02 Leetcode #Leetcode #字符串
Leetcode 字符串中的第一个唯一字符 地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/5/strings/34/ 题目给定一个字符串,找到它的第一个不重复的字符,并返回它的索引。如果不存在,则返回 -1。 2019-02-01 Leetcode #Leetcode #字符串
关于Hexo yilia主题文章截断功能 yilia的主题是自带了文章截断的功能的,当然并不是说写一篇文章它会自动给你截断,还是需要自己将截断标记手动写到文章的某个位置。 截断标记:<!--more--> 2019-02-01 博客 #Hexo #博客 #yilia
Leetcode 整数反转 地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/5/strings/33/ 题目给出一个 32 位的有符号整数,你需要将这个整数中每位上的数字进行反转。 2019-01-31 Leetcode #Leetcode #字符串
Leetcode 反转字符串 地址:https://leetcode-cn.com/explore/interview/card/top-interview-questions-easy/5/strings/32/ 题目编写一个函数,其作用是将输入的字符串反转过来。输入字符串以字符数组 char[] 的形式给出。 2019-01-30 Leetcode #Leetcode #字符串