[python 파이썬] 백준 1427번 소트인사이드
2021. 5. 4. 01:00ㆍAlgorithm/BOJ
반응형
n = int(input())
lists = []
while True:
lists.append(n%10)
n = n // 10
if n ==0:
break
lists.sort(reverse=True)
result="".join(map(str,lists))
print(result)
간단한 문제
"".join(map(str, a)) 을 활용하면 금방 풀 수 있다.
www.delftstack.com/ko/howto/python/how-to-convert-a-list-to-string/
반응형
'Algorithm > BOJ' 카테고리의 다른 글
[python 파이썬] 백준 2875번 대회 or 인턴 (0) | 2021.05.08 |
---|---|
[python 파이썬] 백준 6996번 애너그램 (0) | 2021.05.04 |
[python 파이썬] 백준 10814번 나이순 정렬 (0) | 2021.05.04 |
[python 파이썬] 백준 2869번 달팽이는 올라가고 싶다 (0) | 2021.04.22 |
[python 파이썬] 백준 7569번 토마토 (0) | 2021.03.15 |