美文网首页
Golang解LeetCode 709. 转换成小写字母

Golang解LeetCode 709. 转换成小写字母

作者: 肥肥的大肥鹅 | 来源:发表于2019-12-10 17:30 被阅读0次

    709. 转换成小写字母

    题目描述

    • 实现函数 ToLowerCase(),该函数接收一个字符串参数 str,并将该字符串中的大写字母转换成小写字母,之后返回新的字符串。

    • 示例 1:

      输入: "Hello"
      输出: "hello"
      示例 2:

      输入: "here"
      输出: "here"
      示例 3:

      输入: "LOVELY"
      输出: "lovely"

      来源:力扣(LeetCode)
      链接:https://leetcode-cn.com/problems/to-lower-case
      著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

    解题方法

    func toLowerCase(str string) string {
        rune_arr := []rune(str)
        for i,_ := range rune_arr{
            if rune_arr[i]>=65&&rune_arr[i]<=90{
                rune_arr[i]+=32
            }
        }
        return string(rune_arr)
    }
    

    相关文章

      网友评论

          本文标题:Golang解LeetCode 709. 转换成小写字母

          本文链接:https://www.haomeiwen.com/subject/eciggctx.html