문제 - String으로 주어진 Binary 두 개를 더하기 해결방안 - 케이스별로 String에 char을 추가해주기 - char이 추가될 때 정답의 반대 방향으로 추가되기 때문에 마지막에 reverse 사용해주기 Steps Step 1 StringBuilder output = new StringBuilder(); int aSize = a.length() - 1; int bSize = b.length() - 1; boolean two = false; 리턴 할 변수, 두 string의 사이즈 그리고 2가 나왔을 때 0을 더해 줄 변수를 선언해줍니다. Step 2 while(aSize >= 0 || bSize >= 0){ //if the size of inputs is not the same, use '0..