[LeetCode]709. To Lower Case

Posted April15

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode]709. To Lower Case相关的知识,希望对你有一定的参考价值。

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"

思路: ASCII码中大写字母比小写字母小32,直接加上32变成小写字母。

class Solution {
public:
    string toLowerCase(string str) {
        for(char& c : str)
            if(c >= 'A' && c<='Z') c += 32;
        
        return str;
    }
};

以上是关于[LeetCode]709. To Lower Case的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode709. To Lower Case

leetcode 709. To Lower Case

LeetCode 709.To Lower Case

[LeetCode] 709. To Lower Case

[LeetCode]709. To Lower Case

LeetCode 709 To Lower Case 解题报告