Skip to content

Commit

Permalink
[level 0] Title: 문자열 정렬하기 (2), Time: 0.01 ms, Memory: 10 MB -BaekjoonHub
Browse files Browse the repository at this point in the history
  • Loading branch information
boyamie committed Jul 14, 2024
1 parent 0fd75c7 commit 643d575
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# [level 0] 문자열 정렬하기 (2) - 120911

[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/120911)

### 성능 요약

메모리: 10 MB, 시간: 0.01 ms

### 구분

코딩테스트 연습 > 코딩테스트 입문

### 채점결과

정확성: 100.0<br/>합계: 100.0 / 100.0

### 제출 일자

2024년 07월 14일 18:49:00

### 문제 설명

<p>영어 대소문자로 이루어진 문자열 <code>my_string</code>이 매개변수로 주어질 때, <code>my_string</code>을 모두 소문자로 바꾸고 알파벳 순서대로 정렬한 문자열을 return 하도록 solution 함수를 완성해보세요.</p>

<hr>

<h5>제한사항</h5>

<ul>
<li>0 &lt; <code>my_string</code> 길이 &lt; 100</li>
</ul>

<hr>

<h5>입출력 예</h5>
<table class="table">
<thead><tr>
<th>my_string</th>
<th>result</th>
</tr>
</thead>
<tbody><tr>
<td>"Bcad"</td>
<td>"abcd"</td>
</tr>
<tr>
<td>"heLLo"</td>
<td>"ehllo"</td>
</tr>
<tr>
<td>"Python"</td>
<td>"hnopty"</td>
</tr>
</tbody>
</table>
<hr>

<h5>입출력 예 설명</h5>

<p>입출력 예 #1</p>

<ul>
<li>"Bcad"를 모두 소문자로 바꾸면 "bcad"이고 이를 알파벳 순으로 정렬하면 "abcd"입니다.</li>
</ul>

<p>입출력 예 #2</p>

<ul>
<li>"heLLo"를 모두 소문자로 바꾸면 "hello"이고 이를 알파벳 순으로 정렬하면 "ehllo"입니다.</li>
</ul>

<p>입출력 예 #3</p>

<ul>
<li>"Python"를 모두 소문자로 바꾸면 "python"이고 이를 알파벳 순으로 정렬하면 "hnopty"입니다.</li>
</ul>


> 출처: 프로그래머스 코딩 테스트 연습, https://school.programmers.co.kr/learn/challenges
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
def solution(my_string):
res = [i for i in my_string.lower()]
res.sort()
return ''.join(res)

0 comments on commit 643d575

Please sign in to comment.