-
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 0] Title: 배열 만들기 3, Time: 0.20 ms, Memory: 10.5 MB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
80 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,73 @@ | ||
# [level 0] 배열 만들기 3 - 181895 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/181895) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 10.5 MB, 시간: 0.20 ms | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > 코딩 기초 트레이닝 | ||
|
||
### 채점결과 | ||
|
||
정확성: 100.0<br/>합계: 100.0 / 100.0 | ||
|
||
### 제출 일자 | ||
|
||
2024년 06월 20일 15:52:54 | ||
|
||
### 문제 설명 | ||
|
||
<p>정수 배열 <code>arr</code>와 2개의 구간이 담긴 배열 <code>intervals</code>가 주어집니다.</p> | ||
|
||
<p><code>intervals</code>는 항상 <code>[[a1, b1], [a2, b2]]</code>의 꼴로 주어지며 각 구간은 닫힌 구간입니다. 닫힌 구간은 양 끝값과 그 사이의 값을 모두 포함하는 구간을 의미합니다.</p> | ||
|
||
<p>이때 배열 <code>arr</code>의 첫 번째 구간에 해당하는 배열과 두 번째 구간에 해당하는 배열을 앞뒤로 붙여 새로운 배열을 만들어 return 하는 solution 함수를 완성해 주세요.</p> | ||
|
||
<hr> | ||
|
||
<h5>제한사항</h5> | ||
|
||
<ul> | ||
<li>1 ≤ <code>arr</code>의 길이 ≤ 100,000 | ||
|
||
<ul> | ||
<li>1 ≤ <code>arr</code>의 원소 < 100</li> | ||
</ul></li> | ||
<li>1 ≤ <code>a1</code> ≤ <code>b1</code> < <code>arr</code>의 길이</li> | ||
<li>1 ≤ <code>a2</code> ≤ <code>b2</code> < <code>arr</code>의 길이</li> | ||
</ul> | ||
|
||
<hr> | ||
|
||
<h5>입출력 예</h5> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>arr</th> | ||
<th>intervals</th> | ||
<th>result</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>[1, 2, 3, 4, 5]</td> | ||
<td>[[1, 3], [0, 4]]</td> | ||
<td>[2, 3, 4, 1, 2, 3, 4, 5]</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<hr> | ||
|
||
<h5>입출력 예 설명</h5> | ||
|
||
<p>입출력 예 #1</p> | ||
|
||
<ul> | ||
<li>첫 번째 구간에 해당하는 배열은 [2, 3, 4] 입니다.</li> | ||
<li>두 번째 구간에 해당하는 배열은 [1, 2, 3, 4, 5] 입니다.</li> | ||
<li>따라서 이 두 배열을 앞뒤로 붙인 배열인 [2, 3, 4, 1, 2, 3, 4, 5]를 return 합니다.</li> | ||
</ul> | ||
|
||
|
||
> 출처: 프로그래머스 코딩 테스트 연습, 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,7 @@ | ||
def solution(arr, intervals): | ||
answer = [] | ||
for ele in intervals: | ||
a, b = ele | ||
for i in arr[a:b+1]: | ||
answer.append(i) | ||
return answer |