-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[unrated] Title: 소문자로 바꾸기, Time: 0.00 ms, Memory: 10.2 MB -BaekjoonHub
- Loading branch information
1 parent
8da4785
commit e936eec
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# [unrated] 소문자로 바꾸기 - 181876 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/181876) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 10.2 MB, 시간: 0.00 ms | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > 코딩 기초 트레이닝 | ||
|
||
### 채점결과 | ||
|
||
Empty | ||
|
||
### 문제 설명 | ||
|
||
<p>알파벳으로 이루어진 문자열 <code>myString</code>이 주어집니다. 모든 알파벳을 소문자로 변환하여 return 하는 solution 함수를 완성해 주세요.</p> | ||
|
||
<hr> | ||
|
||
<h5>제한사항</h5> | ||
|
||
<ul> | ||
<li>1 ≤ <code>myString</code>의 길이 ≤ 100,000 | ||
|
||
<ul> | ||
<li><code>myString</code>은 알파벳으로 이루어진 문자열입니다.</li> | ||
</ul></li> | ||
</ul> | ||
|
||
<hr> | ||
|
||
<h5>입출력 예</h5> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>myString</th> | ||
<th>result</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>"aBcDeFg"</td> | ||
<td>"abcdefg"</td> | ||
</tr> | ||
<tr> | ||
<td>"aaa"</td> | ||
<td>"aaa"</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
> 출처: 프로그래머스 코딩 테스트 연습, https://programmers.co.kr/learn/challenges |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
def solution(myString): | ||
return myString.lower() |