:type s: str :rtype: str
(self, s)
| 26 | """ |
| 27 | class Solution(object): |
| 28 | def reverseString(self, s): |
| 29 | """ |
| 30 | :type s: str |
| 31 | :rtype: str |
| 32 | """ |
| 33 | |
| 34 | # return s[::-1] |
| 35 | return ''.join(reversed(list(s))) |
nothing calls this directly
no outgoing calls
no test coverage detected