[programmers] [1차] 비밀지도 - 2018 KAKAO BLIND RECRUITMENT
문제(출처: https://school.programmers.co.kr/learn/courses/30/lessons/17681) 문제 풀이 - my solutiondef solution(n, arr1, arr2): answer = [] for i in range(n): result="" temp=(bin(arr1[i] | arr2[i])) #2진수 and if(len(temp) 0 채우기 tempzero="" for j in range(n+2-len(temp)): tempzero+="0" temp=temp[0:2]+tempzero+temp[2:] ..