leetcode 709. 转换成小写字母 【题目】709. 转换成小写字母 实现函数 ToLowerCase(),该函数接收一个字符串参数 str,并将该字符串中的大写字母转换成小写字母,之后返回新的字符串。 示例 1: 示例 2: 示例 3: 【解题思路1】...leetcode 709. 转换成小写字母 709. 转换成小写字母 实现函数 ToLowerCase...
LeetCode:709. 转换成小写字母 实现函数 ToLowerCase(),该函数接收一个字符串参数 str,并将该字符串中的大写字母转换成小写字母,之后返回新的字符串。 示例 1: 输入: "Hello" 输出: "hello" 示例 2: 输入: "here" 输出: "here" 示例 3: 输入: "LOVELY" 输......
package String; /** * 709. To Lower Case(转换成小写字母) * 实现函数 ToLowerCase(),该函数接收一个字符串参数 str,并将该字符串中的大写字母转换成小写字母,之后返回新的字符串。 */ public class Solution709 { public static void main(String[] args) { Solution709 solution709 = new Solution709...
709. To Lower CaseImplement 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" 题目描述:实现一个 ToLowerCase 函数,...
LeetCode 709.To Lower Case Description 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"
Implement function ToLowerCase() that has a string parameter str, and returns the same string in lowercase. Example 1: Input: "Hello" Output: "hello" 1. 2. Example 2: Input: "here" Output: "here" 1. 2. Example 3: Input: "LOVELY" ...
LeetCode_709_转换成小写字母 题目描述: 实现函数 ToLowerCase(),该函数接收一个字符串参数 str,并将该字符串中的大写字母转换成小写字母,之后返回新的字符串。 输入样例1: 输入: "Hello" 输出: "hello" 1. 2. 3. 输入样例2: 输入: "here"
LeetCode 709. 转换成小写字母 编程算法 实现函数 ToLowerCase(),该函数接收一个字符串参数 str,并将该字符串中的大写字母转换成小写字母,之后返回新的字符串。 村雨遥 2020/04/10 5180 Leetcode#709. To Lower Case(转换成小写字母) 其他 实现函数 ToLowerCase(),该函数接收一个字符串参数 str,并将该字符...
Problem 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" ...
1. 题目:大小写转换 —— 709 给你一个字符串s,将该字符串中的大写字母转换成相同的小写字母,返回新的字符串。 示例1: 输入:s="Hello"输出:"hello" 示例2: 输入:s="here"输出:"here" 示例3: 输入:s="LOVELY"输出:"lovely" 提示: 1 <= s.length <= 100 ...