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
- 프로그래머스 파이썬
- 백준
- 프로그래머스
- Real or Not? NLP with Disaster Tweets
- AI 경진대회
- ChatGPT
- PYTHON
- 파이썬
- Baekjoon
- 우분투
- SW Expert Academy
- leetcode
- 캐치카페
- 맥북
- programmers
- dacon
- 데이콘
- ubuntu
- Kaggle
- hackerrank
- gs25
- 더현대서울 맛집
- Docker
- 자연어처리
- 코로나19
- 편스토랑
- 편스토랑 우승상품
- github
- Git
- 금융문자분석경진대회
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