Notice
Recent Posts
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 | 31 |
Tags
- set to list
- list.sorted()
- Python
- Python 몫
- index
- sort()
- RecursionError
- Unknown command: cask
- 알고리즘 풀이
- Algorithm
- List to String
- 프로그래머스
- homebrew-core is a shallow clone.
- 알고리즘
- List 초기화
- Split
- list to set
- Boto3
- zip()
- COUNT
- 피보나치 수
- string
- sting position
- Modified Date
- python3
- List
- cask
- Python 나머지
- list.pop(0)
- permutations
Archives
- Today
- Total
목록List to String (1)
데이터와 코드로 세상을 바라봅니다.
[Python3] 2018 KAKAO BLIND RECRUITMENT - [1차] 비밀지도
def solution(n, arr1, arr2): answer = [] for seq in range(0,n): binary_arr1 = [0] * n binary_arr2 = [0] * n factor_result = ['#'] * n factor_arr1 = arr1[seq] factor_arr2 = arr2[seq] for seq2 in range(0,n): binary_arr1[n-seq2-1] = factor_arr1 % 2 factor_arr1 = factor_arr1 // 2 binary_arr2[n-seq2-1] = factor_arr2 % 2 factor_arr2 = factor_arr2 // 2 for seq3 in range(0,n): if (binary_arr1[seq3] + bi..
Code/Python
2021. 1. 8. 10:05