Rotate String
题目
Given a string and an offset, rotate string by offset. (rotate from left to right)
Example
Given"abcdefg"
.
分析:
也是三步翻转法,记得offset可能超过数组大小,记得取模。
解法:
Last updated
题目
Given a string and an offset, rotate string by offset. (rotate from left to right)
Example
Given"abcdefg"
.
分析:
也是三步翻转法,记得offset可能超过数组大小,记得取模。
解法:
Last updated