码迷,mamicode.com
首页 > 其他好文 > 详细

[LeetCode]709. To Lower Case

时间:2018-09-05 23:46:27      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:sam   char   lower   function   UNC   cti   ram   for   code   

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

标签:sam   char   lower   function   UNC   cti   ram   for   code   

原文地址:https://www.cnblogs.com/ysugyl/p/9594568.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!