LeetCode 709 To Lower Case 轉換成小寫字母
class Solution {
public:
string toLowerCase(string str) {
for(auto &c:str)
{
if(c>='A' && c<='Z')
c+=32;
}
return str;
}
};
相關推薦
LeetCode 709 To Lower Case 轉換成小寫字母
class Solution { public: string toLowerCase(string str) { for(auto &c:str) { if(c>='A' && c
Leetcode709.To Lower Case轉換成小寫字母
實現函式 ToLowerCase(),該函式接收一個字串引數 str,並將該字串中的大寫字母轉換成小寫字母,之後返回新的字串。 示例 1: 輸入: "Hello" 輸出: "hello" 示例 2: 輸入: "here" 輸出: "here" 示例 
leetcode 709. To Lower Case(水,大寫轉小寫)
Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowe
[LeetCode]709. To Lower Case
out parameter imp () inpu love ++ strong UNC Implement function ToLowerCase() that has a string parameter str, and returns the same strin
[LeetCode] 709. To Lower Case(C++)
Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase. Example 1: Input: "Hello" Out
LeetCode 709 To Lower Case 解題報告
題目要求 Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase. 題目分析及思路 題目要求返回一個字串的小寫形式。可以直接使用lower()函式
Leetcode——709. To Lower Case
題目原址 題目描述 Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase. Exampl
LeetCode 709.To Lower Case
字母 put NPU 轉化 沒有 運行 des image 分享 Description Implement function ToLowerCase() that has a string parameter str, and returns the same strin
C#LeetCode刷題之#709-轉換成小寫字母(To Lower Case)
問題 實現函式 ToLowerCase(),該函式接收一個字串引數 str,並將該字串中的大寫字母轉換成小寫字母,之後返回新的字串。 輸入: "Hello" 輸出: "hello" 輸入: "here" 輸出: "here" 輸入:
leetcode 709. 轉換成小寫字母(To Lower Case)
string return class lis 函數 目錄 res lower 大寫 目錄 題目描述: 示例 1: 示例 2: 示例 3: 解法:
【Leetcode】709. To Lower Case
clas esc scrip int builder cte func pre 遍歷 To Lower Case Description Implement function ToLowerCase() that has a string parameter str, an
leetcode - 709 - 轉換成小寫字母
class Solution: def toLowerCase(self, str): """ :type str: str
【LeetCode】709. 轉換成小寫字母
實現函式 ToLowerCase(),該函式接收一個字串引數 str,並將該字串中的大寫字母轉換成小寫字母,之後返回新的字串。 示例 1: 輸入: “Hello” 輸出: “hello” 示例 2: 輸入: “here” 輸出: “here”
leetcode.709 轉換成小寫字母
實現函式 ToLowerCase(),該函式接收一個字串引數 str,並將該字串中的大寫字母轉換成小寫字母,之後返回新的字串。 示例 1: 輸入: "Hello" 輸出: "hello" 示例 2: 輸入: "here" 輸出: "here" 示例 3
【LeetCode】709. To Lower Case題解(C++)
【LeetCode】709. To Lower Case(C++) 709. To Lower Case Describe: Implement function ToLowerCase() that has a string parameter str, a
leetcode題庫——轉換成小寫字母
不想寫題日常打卡湊題數系列...... 題目描述: 實現函式 ToLowerCase(),該函式接收一個字串引數 str,並將該字串中的大寫字母轉換成小寫字母,之後返回新的字串。 示例 1: 輸入: "Hello" 輸出: "hello" 示例 2: 輸入: "here"
[leetcode]轉換成小寫字母
709. 轉換成小寫字母 實現函式 ToLowerCase(),該函式接收一個字串引數 str,並將該字串中的大寫字母轉換成小寫字母,之後返回新的字串。 示例 1: 輸入: "Hello" 輸出: "hello" 示例 2: 輸入: "here" 輸出: "here
【LeetCode】 轉換成小寫字母
實現函式 ToLowerCase(),該函式接收一個字串引數 str,並將該字串中的大寫字母轉換成小寫字母,之後返回新的字串。 示例 1: 輸入: "Hello" 輸出: "hello" 示例 2: 輸入: "here" 輸出: "here" 示例 3
【Leetcode】To Lower Case
題目大意:把所有的大寫字母轉化為小寫字母 解題方法:判斷字元是否在‘A’-‘Z’中,如果是,則轉換為小寫,如果不是,保留不變既可 Python解法: class Solution(object): def toLowerCase(self, str):
演算法之709. 轉換成小寫字母
題目:實現函式 ToLowerCase(),該函式接收一個字串引數 str,並將該字串中的大寫字母轉換成小寫字母,之後返回新的字串。 class Solution { public: strin