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
- vuejs
- Python
- 파이썬
- cos
- cos pro
- 동적계획법과최단거리역추적
- 코딩테스트
- DFS와BFS
- 분할정복
- 알고리즘
- 백준
- Vue
- DART
- AndroidStudio
- C++
- codingtest
- DFS
- BAEKJOON
- 코테
- 개발
- issue
- Flutter
- 안드로이드
- android
- django
- 동적계획법
- 안드로이드스튜디오
- cos pro 1급
- Algorithm
- 코드품앗이
Archives
- Today
- Total
Development Artist
[COS Pro 1급, Python] 4차 8번 : n번째로 작은 수 구하기 본문
728x90
반응형
문제 유형
코딩
난이도
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 == nums[i]:
answer = i+1
return answer
card1 = [1, 2, 1, 3]
n1 = 1312
ret1 = solution(card1, n1)
print("solution 함수의 반환 값은", ret1, "입니다.")
card2 = [1, 1, 1, 2]
n2 = 1122
ret2 = solution(card2, n2)
print("solution 함수의 반환 값은", ret2, "입니다.")
※ 가끔 코드 중 print(~)가 있습니다. 정리 못한 점 죄송합니다.
728x90
반응형
'Algorithm > COS' 카테고리의 다른 글
[COS Pro 1급, Python] 4차 10번 : 소수의 세제곱이 몇개가 있나요 (0) | 2022.02.25 |
---|---|
[COS Pro 1급, Python] 4차 9번 : 분침과 시침의 각도 구하기 (0) | 2022.02.25 |
[COS Pro 1급, Python] 4차 7번 : RPG스토리 (0) | 2022.02.25 |
[COS Pro 1급, Python] 4차 6번 : 자아도취 수 (0) | 2022.02.25 |
[COS Pro 1급, Python] 4차 5번 : 규칙에 맞는 숫자 생성 (0) | 2022.02.25 |
Comments