Skip to content

Files

Latest commit

9e4e0c7 · Aug 30, 2022

History

History
This branch is 2510 commits behind AnasImloul/Leetcode-Solutions:main.

To Lower Case

709. To Lower Case

Given a string s, return the string after replacing every uppercase letter with the same lowercase letter.

 

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
  • s consists of printable ASCII characters.