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
- 딥러닝 보코더
- tacotron
- you only look once
- 학습
- 딥러닝 음성 합성
- 타코트론
- melgan
- 보코더
- deep voice
- waveglow
- korean tts
- 딥러닝
- TTS
- 한국어 음성 합성
- text-to-speech
- Vocoder
- 한국어 tts
- 윈도우
- singing voice synthesis
- 음성 합성
- YOLO
- DCTTS
- 노래합성
- 트레이닝
Archives
- Today
- Total
chldkato
프로그래머스 [1차] 비밀지도 (파이썬) 본문
https://programmers.co.kr/learn/courses/30/lessons/17681
1. 2개의 지도를 or 비트 연산으로 더하여 비밀 지도를 만든다
2. 지도를 배열로 출력하기 위해서 1 << n과 or 연산을 한다
3. 맨 앞은 자릿수를 맞추기 위한 1이므로 제외하고 값이 1이면 #, 아니면 공백으로 바꾼 후 출력한다
def solution(n, arr1, arr2):
arr3 = [0 for _ in range(n)]
for i in range(n):
arr3[i] = arr1[i] | arr2[i]
a = 1 << n
ans = []
for i in range(n):
x = a | arr3[i]
s = []
for i, w in enumerate(format(x, 'b')):
if i == 0:
continue
if w == '1':
s.append('#')
else:
s.append(' ')
ans.append(''.join(s))
return ans
'프로그래머스' 카테고리의 다른 글
프로그래머스 종이접기 (파이썬) (0) | 2020.03.03 |
---|---|
프로그래머스 방의 개수 (파이썬) (0) | 2020.02.29 |
프로그래머스 블록 이동하기 (파이썬) (0) | 2020.02.29 |
Comments