Ad
  • Custom User Avatar
    import java.math.BigInteger;
    
    public class Kata {
      public static String incrementString(String str) {
        BigInteger n = new BigInteger("1234567890"); 
        return str; // you code here
      }
    }
    

    That works just fine. Not a kata issue.