0709. To Lower Case
https://leetcode.com/problems/to-lower-case
Description
Given a string s
, return the string after replacing every uppercase letter with the same lowercase letter.
Example 1:
Example 2:
Example 3:
Constraints:
1 <= s.length <= 100
s
consists of printable ASCII characters.
ac
Last updated