[Python][D4]SW Expert - 염라대왕의 이름 정렬(7701번)
풀이 T = int(input()) for case in range(1, T+1): n = int(input()) name = [input() for _ in range(n)] answer = list(set(name)) answer.sort() answer = sorted(answer, key=len) print("#%d" % case) for ans in answer: print(ans) 정렬을 2번 해줘야 통과되는 문제였다... 1. name을 입력받고 중복되는 값을 제거하기 위해 set으로 바꾼 후 answer에 넣어준다. 2. answer.sort()로 answer를 정렬하면 사전순으로 정렬된다. 3. 다시, answer를 sorted(answer, key=len)으로 정렬하면 길이순으로 정렬된다.
ALGORITHM/SW Expert
2020. 4. 7. 03:38
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- C++
- 프로그래머스
- 문자열
- combination
- 2020 KAKAO BLIND RECRUITMENT
- programmers
- SWExpert
- 해시
- 구현
- left join
- Python
- 문자열처리
- 딕셔너리
- 힙
- SW Expert
- 우선순위큐
- 2019 Kakao Blind Recruitment
- 백준
- dictionary
- hash
- Permutation
- 파이썬
- 정렬
- 괄호
- 완전탐색
- 순열
- 코딩테스트
- 재귀
- 스택
- BOJ
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함