因為卡在#141 Linked list cycle那題,想說先繼續寫其他題目,這題搞懂之後再回去紀錄第141題。今天選了另外一道,中後面的Easy題,是看到別人文章標題上寫的題目名字,看起來好像不是太難,決定挑這題來試試看。
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"
這題目標就是把輸入的英文字串通通轉成小寫的字,我在參考1連結中有找到一個function是可以直接把字串轉成小寫字,用法是string.lower()
所以這題我想到的方式應該是這樣寫
def toLowerCase(self, str: str) -> str:
return str.lower()
Submit後的結果如下: