반응형
Recent Posts
Notice
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- softeer
- python 1259
- 프로그래머스
- 백준 2309
- 항해99
- 백준 카드1
- 구현
- 99클럽
- 개발자 취업
- til
- 큐
- leetcode
- BOJ
- python 14503
- BFS
- 백준 팰린드롬수
- Python 20001
- 스택
- 일곱 난쟁이
- python 10989
- 파이썬
- python 10250
- 99항해
- boj 2309
- Python
- python 2309
- 백준
- 백준 막대기
- 코딩테스트 준비
- leetcode 2405
Archives
- Today
- Total
동까의 코딩
[99클럽] 32일차 TIL 본문
반응형
https://leetcode.com/problems/reordered-power-of-2/description/
import itertools
class Solution:
def reorderedPowerOf2(self, n: int) -> bool:
cnt = 0
answer = False
n = str(n)
num_list = []
for i in n:
num_list.append(i)
nCr = itertools.permutations(num_list, len(num_list))
num_list = []
nCr = list(nCr)
for i in range(len(nCr)):
st = ''
for num, j in enumerate(nCr[i]):
if num == 0 and j == '0':
break
st += j
if st == '':
continue
st = int(st)
num_list.append(st)
num_list = set(num_list)
print(num_list)
max_num = max(num_list)
while 2 ** cnt <= max_num:
if (2 ** cnt) in num_list:
answer = True
return answer
cnt += 1
return answer
값을 입력받으면 자리수를 교환하여 바꿀 수 있는 수를 뽑아주어 2의 제곱수가 되는지를 확인하는 문제입니다. 첫번째 자리에 0이 오는 것을 제외하고 값을 추춘한 뒤 2의 제곱값을 max값보다 적은 값까지 구해주고 True, False를 반환하는 코드를 작성하였습니다.
반응형
'문제 풀이 > 99클럽' 카테고리의 다른 글
[99클럽] 34일차 TIL (0) | 2024.06.23 |
---|---|
[99클럽] 33일차 TIL (0) | 2024.06.22 |
[99클럽] 31일차 TIL (0) | 2024.06.20 |
[99클럽] 30일차 TIL (0) | 2024.06.19 |
[99클럽] 29일차 TIL (0) | 2024.06.18 |