이제 내가 이런 것도 풀 수 있게 되다니...
갬덩...
https://school.programmers.co.kr/learn/courses/30/lessons/17681
class Solution {
public String[] solution(int n, int[] arr1, int[] arr2) {
String[] answer = new String[n];
String formatString = "%"+n+"s";
for(int i=0; i<n; i++) {
String binaryString = Integer.toBinaryString(arr1[i] | arr2[i]);
answer[i] = String.format(formatString, binaryString).replace(' ', '0').replace('1','#').replace('0',' ');
}
return answer;
}
}