jotting

ⓁⒸ ‧‧‧ 709. To Lower Case

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
2
Input: "Hello"
Output: "hello"

Example 2

1
2
Input: "here"
Output: "here"

Example 3

1
2
Input: "LOVELY"
Output: "lovely"

❀ 翻譯

問題

實現具有 字串參數 str 的函數 ToLowerCase() ,並以小寫形式返回相同的字符串。


❀ Solution

Golang

1
2
3
4
func toLowerCase(str string) string {
// 使用原生套件 strings 的 ToLower 轉換成小寫
return strings.ToLower(str)
}