To-Lower-Case 发表于 2018-07-13 | 更新于: 2018-08-22 题目地址LeetCode#709 To Lower Case 题目描述 Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase. 解题思路 实现 ToLowerCase() 方法。 解题代码1234567891011class Solution {public: string toLowerCase(string str) { for (auto &c : str) { if (c >= 'A' && c <= 'Z') { c += 32; } } return str; }};