1. 내 풀이https://school.programmers.co.kr/learn/courses/30/lessons/68935 class Solution { public int solution(int n) { int answer = 0; // 10진법을 3진법으로 만들기 /* 45일 때, 45%3 = 0 15 % 3 = 0 5 % 3 = 2 1 % 3 = 1 toThird = 0021 */ String toThird = ""; while(n != 0) { toThird += (n % 3); n /= 3; } ..