-
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.
[level 2] Title: 최댓값과 최솟값, Time: 0.09 ms, Memory: 10.3 MB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
69 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,54 @@ | ||
# [level 2] 최댓값과 최솟값 - 12939 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/12939) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 10.3 MB, 시간: 0.09 ms | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > 연습문제 | ||
|
||
### 채점결과 | ||
|
||
정확성: 100.0<br/>합계: 100.0 / 100.0 | ||
|
||
### 제출 일자 | ||
|
||
2024년 06월 26일 16:39:55 | ||
|
||
### 문제 설명 | ||
|
||
<p>문자열 s에는 공백으로 구분된 숫자들이 저장되어 있습니다. str에 나타나는 숫자 중 최소값과 최대값을 찾아 이를 "(최소값) (최대값)"형태의 문자열을 반환하는 함수, solution을 완성하세요.<br> | ||
예를들어 s가 "1 2 3 4"라면 "1 4"를 리턴하고, "-1 -2 -3 -4"라면 "-4 -1"을 리턴하면 됩니다.</p> | ||
|
||
<h5>제한 조건</h5> | ||
|
||
<ul> | ||
<li>s에는 둘 이상의 정수가 공백으로 구분되어 있습니다.</li> | ||
</ul> | ||
|
||
<h5>입출력 예</h5> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>s</th> | ||
<th style="text-align: center">return</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>"1 2 3 4"</td> | ||
<td style="text-align: center">"1 4"</td> | ||
</tr> | ||
<tr> | ||
<td>"-1 -2 -3 -4"</td> | ||
<td style="text-align: center">"-4 -1"</td> | ||
</tr> | ||
<tr> | ||
<td>"-1 -1"</td> | ||
<td style="text-align: center">"-1 -1"</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
> 출처: 프로그래머스 코딩 테스트 연습, https://school.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,15 @@ | ||
def solution(s): | ||
max = "" | ||
min = "" | ||
for i in s.split(): | ||
if max == "": | ||
max = i | ||
if min == "": | ||
min = i | ||
if int(i) > int(max): | ||
max = i | ||
if int(i) < int(min): | ||
min = i | ||
return min + ' ' +max | ||
|
||
solution("-1 -2 -3 -4") |