Post

leetcode(리트코드)5월24일 challenge709-To Lower Case(python)

leetcode(리트코드)5월24일 challenge709-To Lower Case(python)

leetcode May 24일 - To Lower Case 문제입니다.

1. 문제

https://leetcode.com/problems/to-lower-case/


2. Input , Output


3. 분류 및 난이도

Eazy 난이도입니다.
5월 24일자 챌린지 문제입니다.


4. 문제 해석

  • 너무나도 쉬운 문제입니다..
  • 그래서 bad수가 압도적으로 많습니다.

5. code

python

1
2
3
class Solution:
    def toLowerCase(self, s: str) -> str:
        return s.lower()

6. 결과 및 후기, 개선점

필요시 c++로 풀어드립니다.

This post is licensed under CC BY 4.0 by the author.