Solution.java 405 B

12345678910111213141516
  1. import java.math.BigInteger;
  2. class Solution {
  3. public String smallestGoodBase(String n) {
  4. BigInteger sum = new BigInteger(n);
  5. }
  6. private static void testSmallestGoodBase(String n) {
  7. Solution solution = new Solution();
  8. System.out.println(solution.smallestGoodBase(n));
  9. }
  10. public static void main(String[] args) {
  11. testSmallestGoodBase("32141432");
  12. }
  13. }