v69806c1
Search for a command to run...
Given a string s, return the string after replacing every uppercase letter with the same lowercase letter.
s
Example 1:
Input: s = "Hello"Output: "hello"
Example 2:
Input: s = "here"Output: "here"
Example 3:
Input: s = "LOVELY"Output: "lovely"
Constraints:
1 <= s.length <= 100
Example 1
here
Example 2
Hello
hello
Example 3
LOVELY
lovely