Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- hackerrank
- 편스토랑
- 프로그래머스
- Kaggle
- PYTHON
- Baekjoon
- dacon
- 백준
- github
- Docker
- Real or Not? NLP with Disaster Tweets
- 데이콘
- 우분투
- 금융문자분석경진대회
- Git
- 더현대서울 맛집
- SW Expert Academy
- 프로그래머스 파이썬
- 파이썬
- programmers
- AI 경진대회
- 코로나19
- 자연어처리
- leetcode
- 맥북
- 편스토랑 우승상품
- ubuntu
- gs25
- ChatGPT
- 캐치카페
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 709. To Lower Case (Python) 본문
728x90
반응형
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"
Solution
class Solution:
def toLowerCase(self, string: str) -> str:
return string.lower()
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 1281. Subtract the Product and Sum of Digits of an Integer (Python) (0) | 2020.08.30 |
---|---|
[leetCode] 1556. Thousand Separator (Python) (0) | 2020.08.29 |
[leetCode] 263. Ugly Number (Python) (1) | 2020.08.14 |
[leetCode] 665. Non-decreasing Array (Python) (0) | 2020.08.13 |
[leetCode] 344. Reverse String (Python) (0) | 2020.08.13 |
Comments