709. To Lower Case
❀ Origin
Problem
Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase.
Example 1
1 | Input: "Hello" |
Example 2
1 | Input: "here" |
Example 3
1 | Input: "LOVELY" |
❀ 翻譯
問題
實現具有 字串參數 str 的函數 ToLowerCase() ,並以小寫形式返回相同的字符串。
❀ Solution
Golang
1 | func toLowerCase(str string) string { |