Skip to content

Commit

Permalink
[unrated] Title: 소문자로 바꾸기, Time: 0.00 ms, Memory: 10.2 MB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeong-Minkyeong committed May 11, 2023
1 parent 8da4785 commit e936eec
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def solution(myString):
return myString.lower()

0 comments on commit e936eec

Please sign in to comment.