Skip to content

Latest commit

 

History

History
executable file
·
30 lines (20 loc) · 391 Bytes

File metadata and controls

executable file
·
30 lines (20 loc) · 391 Bytes

题目

Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase.

Example 1:

Input: "Hello"
Output: "hello"

Example 2:

Input: "here"
Output: "here"

Example 3:

Input: "LOVELY"
Output: "lovely"

解题思路

见程序注释