其他分享
首页 > 其他分享> > 2021-12-12每日一题

2021-12-12每日一题

作者:互联网

709. 转换成小写字母

给你一个字符串 s ,将该字符串中的大写字母转换成相同的小写字母,返回新的字符串。

 

示例 1:

输入:s = "Hello"
输出:"hello"

示例 2:

输入:s = "here"
输出:"here"

示例 3:

输入:s = "LOVELY"
输出:"lovely"

 

提示:

1 class Solution {
2     public String toLowerCase(String s) {
3         return s.toLowerCase();
4     }
5 }

 

标签:12,String,示例,小写字母,每日,here,2021,字符串
来源: https://www.cnblogs.com/benbicao/p/15679017.html