一、问题链接:
https://leetcode.com/problems/to-lower-case/description/
二、思路:
使用StringUtils去除掉null和"",然后用java Api
String toLowerCase():转成小写。
后来发现忘记StringUtils是apache下面的包,需要自行导入
三、编码:
class Solution {
public String toLowerCase(String str) {
if(str == null || "".equals(str)){
return str;
}
return str.toLowerCase();
}
}