iT邦幫忙

2019 iT 邦幫忙鐵人賽

DAY 1
0
自我挑戰組

1天1題LEETCODE題目系列 第 1

Python 新手挑戰Leetcode 709.題 [To Lower Case]

  • 分享至 

  • xImage
  •  

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"

這題目在Python沒有很難, 因為Python有內建的語法
這個語法就是.lower()只要找.lower輸入在str後就可以把字串變成小寫

程式碼

class Solution:
def toLowerCase(self, str):
"""
:type str: str
:rtype: str
"""
return(str.lower())

資料來源:https://leetcode.com/problems/to-lower-case/description/


下一篇
Python 新手挑戰Leetcode 682.題 [Baseball Game]
系列文
1天1題LEETCODE題目4
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言