MCPcopy Create free account
hub / github.com/Jack-Lee-Hiter/AlgorithmsByPython / reverseString

Method reverseString

leetcode/344. Reverse String.py:9–10  ·  view source on GitHub ↗
(self, s)

Source from the content-addressed store, hash-verified

7
8class Solution(object):
9 def reverseString(self, s):
10 return s[::-1]
11 def reverseString2(self, s):
12 if not s or len(s) < 2:
13 return s

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected