컴공생의 다이어리
[프로그래머스] 비밀지도 - 파이썬(Python) 본문
[프로그래머스] 비밀지도 - 파이썬(Python)
def solution(n, arr1, arr2):
answer = []
for i, j in zip(arr1, arr2):
temp = str(bin(i | j)[2:]).rjust(n, '0')
temp = temp.replace('1', '#')
temp = temp.replace('0', ' ')
answer.append(temp)
return answer
https://programmers.co.kr/learn/courses/30/lessons/17681
728x90
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[프로그래머스] 입국심사 - 파이썬(Python) (0) | 2022.06.26 |
---|---|
[프로그래머스] 영어 끝말잇기 - 파이썬(Python) (0) | 2022.06.25 |
[프로그래머스] N으로 표현 - 파이썬(Python) (0) | 2022.06.21 |
[프로그래머스] 순위 - 파이썬(Python) (0) | 2022.06.20 |
[프로그래머스] 가장 먼 노드 - 파이썬(Python) (0) | 2022.06.19 |
Comments