常喝水
常喝水
全部文章
题解
未归档(1)
求职(4)
知识积累(1)
算法(10)
项目(4)
归档
标签
去牛客网
登录
/
注册
学习日记
一房二人三餐四季,星辰大海,雅俗共度
全部文章
/ 题解
(共6篇)
58扩展. 左旋转字符串
左旋转字符串与此题类似,先翻转旋转的n位字符,再翻转其余的字符,最后翻转整个字符串,例如abcdefg左旋转两位:首先变为bacdefg,然后bagfedc,最后cdefgab为所求class Solution: def LeftRotateString(self, s, n): #...
剑指offer
字符串
2020-02-15
0
756
58. 翻转字符串
如果调用函数,可以很快得到答案,但这应该不是这道题的本意 class Solution: def ReverseSentence(self, s): # write code here return ' '.join(s.split(' ')[::-1]) 标准做法是通过...
剑指offer
字符串
2020-01-02
0
631
67. 把字符串转换为整数
要考虑到的情况: 空字符串 正负号 溢出(最大的正整数值是0x7FFF FFFF,最小的负整数是0x8000 0000) 但是python和c/c++/java不同,后者里面的负数都是以补码的形式进行存储的,python中的负数自带符号。所以要注意是-0x80000000 <= sum*l...
剑指offer
位运算
字符串
2019-12-30
6
1453
38.字符串的排列
写这段代码的时候就是不知道在哪里写递归函数,一开始写的是res.append(head+self.Permutation(shadow)),果然递归就是一看就会一写就废 class Solution: def Permutation(self, ss): # write co...
剑指offer
字符串
递归
2019-12-19
9
1104
20. 表示数值的字符串
class Solution: # s字符串 def isNumeric(self, s): # write code here pointmark = False exponentmark = False signma...
剑指offer
字符串
2019-12-11
0
721
5. 替换空格
调用函数class Solution: # s 源字符串 def replaceSpace(self, s): # write code here if not s: return '' return '%20'.join(s.split(' '...
剑指offer
字符串
2019-12-03
5
1097