运行时间:31ms
占用内存:5732k
Python很简单,因为字符串可以看做迭代器,直接切片分开即可
# -*- coding:utf-8 -*-
class Solution:
def LeftRotateString(self, s, n):
# write code here
if not s:
return s
lenth = len(s)
nn = n % lenth
return s[nn:]+s[:nn]
据说要少用内置函数去解决问题。。但是我觉得这种面试中也很少出现