본문 바로가기
python-algorithm

Leetcode 709. To Lower Case

by 무적김두칠 2021. 8. 17.

1
2
3
4
class Solution:
    def toLowerCase(self, s: str-> str:
        s=s.lower()
        return s
cs
반응형

댓글