Algorithm
CODEUP - 1451 : 데이터 정렬 (small) (python)
CODEUP - 1451 : 데이터 정렬 (small) (python)
2020.09.271 2 3 4 5 6 7 8 count = int(input()) array = list() for i in range(count): array.append(int(input())) array.sort() for value in array: print(value) cs
CODEUP - 1445 : 정렬된 두 배열 합치기 (python)
CODEUP - 1445 : 정렬된 두 배열 합치기 (python)
2020.09.271 2 3 4 5 6 7 8 a, b = input().split() a_list = list(map(int, input().split())) b_list = list(map(int, input().split())) c_list = a_list + b_list c_list.sort() for value in c_list: print(value, end=" ") cs
이것이 코딩테스트다 - 상하좌우
이것이 코딩테스트다 - 상하좌우
2020.09.27저는 책에서 나온 방식과는 조금 다르게 풀었습니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 a = int(input()) move_list = list(map(str, input().split())) array = [(i + 1, j + 1) for i in range(a) for j in range(a)] col = 0 row = 0 for move in move_list: if move == 'R': if 0
Codeup 1503: 지그재그 입력(2차원 배열)