Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- DFS
- android
- 안드로이드스튜디오
- django
- 파이썬
- 분할정복
- Flutter
- 백준
- Algorithm
- cos
- 동적계획법과최단거리역추적
- C++
- 코드품앗이
- 개발
- 안드로이드
- BAEKJOON
- 코테
- cos pro 1급
- Vue
- cos pro
- codingtest
- Python
- issue
- vuejs
- DFS와BFS
- DART
- 동적계획법
- 알고리즘
- 코딩테스트
- AndroidStudio
Archives
- Today
- Total
목록cos 1급 4차 n번째로 작은 수 구하기 python (1)
Development Artist
[COS Pro 1급, Python] 4차 8번 : n번째로 작은 수 구하기
문제 유형 코딩 난이도 hard Note 1. set 알기 : 배열 원소의 중복 제거 2. itertools의 permutations : 순열을 만들어 주는 라이브러리 함수 3. 1번과 2번을 알면 쉬움. Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean import itertools def solution(card, n): answer = -1 card = list(map(str, card)) nums = list(map(''.join, itertools.permutations(card))) nums = list(set(map(int, nums))) nums.sort() for i in range(len(nums)): if n == num..
Algorithm/COS
2022. 2. 25. 13:17