Skip to content

Latest commit

 

History

History
21 lines (21 loc) · 4.19 KB

string.md

File metadata and controls

21 lines (21 loc) · 4.19 KB

字符串

leetcode

 题号  题目链接             答案链接              难度   完成度 
13 罗马数字转整数 romanToInt easy
14 最长功能前缀 longestCommonPrefix easy
28 实现 strStr() strStr easy
58 最后一个单词的长度 lengthOfLastWord easy
67 二进制求和 addBinary easy
3 无重复字符的最长子串 lengthOfLongestSubstring medium
6 Z字形变换 zigzag_conversion medium

剑指offer

 题号  题目链接             答案链接              难度   完成度 
-- 剑指Offer(二):替换空格 replaceSpace
-- 剑指Offer(二十七):字符串的排列 Permutation
-- 剑指Offer(三十四):第一个只出现一次的字符 FirstNotRepeatingChar
-- 剑指Offer(四十四):翻转单词顺序序列 ReverseSentence
-- 剑指Offer(四十九):把字符串转换成整数 StrToInt
-- 剑指Offer(五十二):正则表达式匹配 match
-- 剑指Offer(五十三):表示数值的字符串 --