[백준] #2947 나무 조각 python
2023. 2. 22. 06:00
https://www.acmicpc.net/problem/2947
📕 설명 📕
반복문을 통해 list가 정렬 될 때까지 해당 과정을 반복한다.
🧑🏻💻 나의 풀이 🧑🏻💻
N_li = list(map(int, input().split()))
while True:
check = True
for i in range(1,5):
if N_li[i-1] > N_li[i]:
tmp = N_li[i]
N_li[i] = N_li[i-1]
N_li[i-1] = tmp
check = False
print(*N_li)
if check:
break
'Programming > Algorithm' 카테고리의 다른 글
[백준] #3035 스캐너 python (0) | 2023.02.24 |
---|---|
[백준] #2966 찍기 python (1) | 2023.02.23 |
[백준] #2857 FBI python (0) | 2023.02.21 |
[백준] #2846 오르막길 python (0) | 2023.02.20 |
[백준] #2484 주사위 네 개 python (0) | 2023.02.19 |