일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 수학
- 프로그래머스
- 다익스트라
- BFS
- 정렬
- 백준
- programmers
- Combinations
- KAKAO BLIND RECRUITMENT
- java
- 동적 계획법
- dfs
- 그리디
- 위클리 챌린지
- backjoon
- 카카오
- python
- Zip
- DateTime
- 파이썬
- 정규식
- 추석맞이 코딩챌린지
- Set
- 이분탐색
- divmod
- Re
- heapq
- 재귀함수
- lambda
- 자바
Archives
- Today
- Total
상상쓰
[프로그래머스] 튜플 본문
https://programmers.co.kr/learn/courses/30/lessons/64065
문자열 s 를 배열로 만들어 길이에 따라 정렬한 뒤 차례대로 중복 없이 answer 에 담으면 된다.
def solution(s):
answer = []
s = s.replace('{', '[')
s = s.replace('}', ']')
result = eval(s)
result.sort(key = len)
for i in result:
for j in i:
if j not in answer:
answer.append(j)
return answer
print(solution('{{2},{2,1},{2,1,3},{2,1,3,4}}')) # [2, 1, 3, 4]
'Coding Test' 카테고리의 다른 글
[프로그래머스] 네트워크 (0) | 2021.07.26 |
---|---|
[백준] 스택 (0) | 2021.07.23 |
[백준] 소수 최소 공배수 (0) | 2021.07.22 |
[프로그래머스] 가사 검색 (0) | 2021.07.22 |
[프로그래머스] 오픈채팅방 (0) | 2021.07.21 |
Comments