實現函式 tolowercase(),該函式接收乙個字串引數 str,並將該字串中的大寫字母轉換成小寫字母,之後返回新的字串。
示例 1:
輸入: 「hello」
輸出: 「hello」
示例 2:
輸入: 「here」
輸出: 「here」
示例 3:
輸入: 「lovely」
輸出: 「lovely」
利用charat()函式對字串中每個字元進行提取,然後判斷字元是不是小寫字母,如果不是就就對其的ascii值加32,將其變成小寫字母,然後返回。
接下來附上**:
class solution
str1+=c;
}return str1;
}}
leetcode轉換成小寫字母 709
實現函式 tolowercase 該函式接收乙個字串引數 str,並將該字串 中的大寫字母轉換成小寫字母,之後返回新的字串。輸入 hello 輸出 hello address def to lower case string str str return string.lower 1.利用ascii...
LeetCode 709 轉換成小寫字母
題目鏈結 實現函式 tolowercase 該函式接收乙個字串引數 str,並將該字串中的大寫字母轉換成小寫字母,之後返回新的字串。示例 1 輸入 hello 輸出 hello 示例 2 輸入 here 輸出 here 示例 3 輸入 lovely 輸出 lovely 解題思路 大寫字母的 ascl...
報數(LeetCode第38題)
class solution def countandsay self,n type n int rtype str output str 1 for i in range n 1 for i in range 0 這是不執行的 count 0 s 儲存第i個的報數值,在新一輪迴圈之後清空 fris...