-
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: 정사각형으로 만들기, Time: 0.10 ms, Memory: 11 MB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
102 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,85 @@ | ||
# [level 0] 정사각형으로 만들기 - 181830 | ||
|
||
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/181830) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 11 MB, 시간: 0.10 ms | ||
|
||
### 구분 | ||
|
||
코딩테스트 연습 > 코딩 기초 트레이닝 | ||
|
||
### 채점결과 | ||
|
||
정확성: 100.0<br/>합계: 100.0 / 100.0 | ||
|
||
### 제출 일자 | ||
|
||
2024년 12월 11일 14:57:38 | ||
|
||
### 문제 설명 | ||
|
||
<p>이차원 정수 배열 <code>arr</code>이 매개변수로 주어집니다. <code>arr</code>의 행의 수가 더 많다면 열의 수가 행의 수와 같아지도록 각 행의 끝에 0을 추가하고, 열의 수가 더 많다면 행의 수가 열의 수와 같아지도록 각 열의 끝에 0을 추가한 이차원 배열을 return 하는 solution 함수를 작성해 주세요.</p> | ||
|
||
<hr> | ||
|
||
<h5>제한사항</h5> | ||
|
||
<ul> | ||
<li>1 ≤ <code>arr</code>의 길이 ≤ 100</li> | ||
<li>1 ≤ <code>arr</code>의 원소의 길이 ≤ 100 | ||
|
||
<ul> | ||
<li><code>arr</code>의 모든 원소의 길이는 같습니다.</li> | ||
</ul></li> | ||
<li>1 ≤ <code>arr</code>의 원소의 원소 ≤ 1,000</li> | ||
</ul> | ||
|
||
<hr> | ||
|
||
<h5>입출력 예</h5> | ||
<table class="table"> | ||
<thead><tr> | ||
<th>arr</th> | ||
<th>result</th> | ||
</tr> | ||
</thead> | ||
<tbody><tr> | ||
<td>[[572, 22, 37], [287, 726, 384], [85, 137, 292], [487, 13, 876]]</td> | ||
<td>[[572, 22, 37, 0], [287, 726, 384, 0], [85, 137, 292, 0], [487, 13, 876, 0]]</td> | ||
</tr> | ||
<tr> | ||
<td>[[57, 192, 534, 2], [9, 345, 192, 999]]</td> | ||
<td>[[57, 192, 534, 2], [9, 345, 192, 999], [0, 0, 0, 0], [0, 0, 0, 0]]</td> | ||
</tr> | ||
<tr> | ||
<td>[[1, 2], [3, 4]]</td> | ||
<td>[[1, 2], [3, 4]]</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<hr> | ||
|
||
<h5>입출력 예 설명</h5> | ||
|
||
<p>입출력 예 #1</p> | ||
|
||
<ul> | ||
<li>예제 1번의 <code>arr</code>은 행의 수가 4, 열의 수가 3입니다. 행의 수가 더 많으므로 열의 수를 4로 만들기 위해 <code>arr</code>의 각 행의 끝에 0을 추가한 이차원 배열 [[572, 22, 37, 0], [287, 726, 384, 0], [85, 137, 292, 0], [487, 13, 876, 0]]를 return 합니다.</li> | ||
</ul> | ||
|
||
<p>입출력 예 #2</p> | ||
|
||
<ul> | ||
<li>예제 2번의 <code>arr</code>은 행의 수가 2, 열의 수가 4입니다. 열의 수가 더 많으므로 행의 수를 4로 만들기 위해 <code>arr</code>의 각 열의 끝에 0을 추가한 이차원 배열 [[57, 192, 534, 2], [9, 345, 192, 999], [0, 0, 0, 0], [0, 0, 0, 0]]을 return 합니다.</li> | ||
</ul> | ||
|
||
<p>입출력 예 #3</p> | ||
|
||
<ul> | ||
<li>예제 3번의 <code>arr</code>은 행의 수와 열의 수가 2로 같습니다. 따라서 0을 추가하지 않고 [[1, 2], [3, 4]]을 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,17 @@ | ||
def solution(arr): | ||
row = len(arr) | ||
col = len(arr[0]) | ||
|
||
answer = [] | ||
if row > col: | ||
for i in arr: | ||
answer.append(i+[0]*(row-col)) | ||
|
||
elif row < col: | ||
for i in range(col-row): | ||
arr.append([0] * col) | ||
answer = arr | ||
|
||
else: | ||
answer=arr | ||
return answer |