leetcode/0344_reverse-string
Sangeeth Sudheer 10e16b97e2 feat(0344-reverse-string): add py3 solution 2022-04-01 17:23:23 +05:30
..
python3 feat(0344-reverse-string): add py3 solution 2022-04-01 17:23:23 +05:30
README.md feat(0344-reverse-string): add py3 solution 2022-04-01 17:23:23 +05:30

README.md

Write a function that reverses a string. The input string is given as an array of characters s.

You must do this by modifying the input array in-place with O(1) extra memory.

Example 1:

Input: s = ["h","e","l","l","o"] Output: ["o","l","l","e","h"] 

Example 2:

Input: s = ["H","a","n","n","a","h"] Output: ["h","a","n","n","a","H"] 

Constraints: