Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 동적계획법과최단거리역추적
- django
- cos
- 안드로이드스튜디오
- 동적계획법
- DART
- issue
- vuejs
- Flutter
- 코딩테스트
- codingtest
- Vue
- 파이썬
- cos pro
- DFS
- C++
- 백준
- AndroidStudio
- 알고리즘
- android
- cos pro 1급
- BAEKJOON
- 안드로이드
- 개발
- DFS와BFS
- 분할정복
- 코드품앗이
- Python
- Algorithm
- 코테
Archives
- Today
- Total
Development Artist
[COS Pro 1급, Python] 1차 7번 : 병합 and 정렬 본문
728x90
반응형
문제 유형
빈칸
난이도
easy
Note
Nothing
Code
def solution(arrA, arrB):
arrA_idx = 0
arrB_idx = 0
arrA_len = len(arrA)
arrB_len = len(arrB)
answer = []
while arrA_idx < arrA_len and arrB_idx < arrB_len:
if arrA[arrA_idx] < arrB[arrB_idx]:
answer.append(arrA[arrA_idx])
arrA_idx += 1
else:
answer.append(arrB[arrB_idx])
arrB_idx += 1
while arrA_idx < arrA_len:
answer.append(arrA[arrA_idx])
arrA_idx += 1
while arrB_idx < arrB_len:
answer.append(arrB[arrB_idx])
arrB_idx += 1
return answer
arrA = [-2, 3, 5, 9]
arrB = [0, 1, 5]
ret = solution(arrA, arrB);
print("solution 함수의 반환 값은", ret, "입니다.")
※ 가끔 코드 중 print(~)가 있습니다. 정리 못한 점 죄송합니다.
728x90
반응형
'Algorithm > COS' 카테고리의 다른 글
[COS Pro 1급, Python] 1차 9번 : 계단 게임 (0) | 2022.02.24 |
---|---|
[COS Pro 1급, Python] 1차 8번 : 누가 당선 되나요 (0) | 2022.02.24 |
[COS Pro 1급, Python] 1차 6번 : 체스의 나이트 (0) | 2022.02.24 |
[COS Pro 1급, Python] 1차 5번 : 소용돌이 수 (0) | 2022.02.24 |
[COS Pro 1급, Python] 1차 4번 : 타임머신 (0) | 2022.02.24 |
Comments