-
Notifications
You must be signed in to change notification settings - Fork 0
709_ToLowerCase
a920604a edited this page Apr 14, 2023
·
1 revision
class Solution {
public:
string toLowerCase(string s) {
string str;
for(char c: s){
if(c>='A' && c<='Z') c+=32;
str+=c;
}
return str;
}
};
- time complexity
O(n)
- space complexity
O(1)
footer