Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 파이썬
- 자연어처리
- leetcode
- PYTHON
- 프로그래머스 파이썬
- 캐치카페
- 더현대서울 맛집
- 데이콘
- 맥북
- dacon
- 우분투
- 프로그래머스
- programmers
- Kaggle
- gs25
- Real or Not? NLP with Disaster Tweets
- Git
- 코로나19
- Docker
- ChatGPT
- AI 경진대회
- 편스토랑 우승상품
- hackerrank
- 금융문자분석경진대회
- SW Expert Academy
- 편스토랑
- Baekjoon
- ubuntu
- github
- 백준
Archives
- Today
- Total
솜씨좋은장씨
[SW Expert Academy] 1966번 : 숫자를 정렬하자 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 SW Expert Academy 의 숫자를 정렬하자 입니다.
👨🏻💻 코드 ( Solution )
def sort_numbers(numbers):
numbers = list(map(str, sorted(numbers)))
return " ".join(numbers)
if __name__ == "__main__":
for idx in range(int(input())):
N = int(input())
numbers = list(map(int, input().split()))
print(f"#{idx+1} {sort_numbers(numbers)}")
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[SW Expert Academy] 2029번 : 몫과 나머지 출력하기 (Python) (0) | 2021.12.01 |
---|---|
[SW Expert Academy] 1976번 : 시각 덧셈 (Python) (0) | 2021.11.30 |
[SW Expert Academy] 4406번 : 모음이 보이지 않는 사람 (Python) (0) | 2021.11.28 |
[SW Expert Academy] 1948번 : 날짜 계산기 (Python) (0) | 2021.11.27 |
[SW Expert Academy] 2063번 : 중간값 찾기 (Python) (0) | 2021.11.26 |
Comments