1 Star 0 Fork 0

徐长贺/Leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
_709.java 500 Bytes
一键复制 编辑 原始数据 按行查看 历史
Fisher Coder 提交于 7年前 . add 709
package com.fishercoder.solutions;
/**709. To Lower Case
*
* 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"*/
public class _709 {
public static class Solution1 {
public String toLowerCase(String str) {
return str.toLowerCase();
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/isulong/Leetcode.git
git@gitee.com:isulong/Leetcode.git
isulong
Leetcode
Leetcode
master

搜索帮助