题解 | #反转字符串#
反转字符串
http://www.nowcoder.com/practice/c3a6afee325e472386a1c4eb1ef987f3
#
# 反转字符串
# @param str string字符串
# @return string字符串
#
class Solution:
def solve(self , str ):
# write code here
return str[::-1] 反转字符串
http://www.nowcoder.com/practice/c3a6afee325e472386a1c4eb1ef987f3
#
# 反转字符串
# @param str string字符串
# @return string字符串
#
class Solution:
def solve(self , str ):
# write code here
return str[::-1] 相关推荐
双尔:果然人与人之间的悲伤无法互通,我倒是希望能找到一个朝九晚六的工作
查看8道真题和解析