Ad
  • Custom User Avatar

    This comment is hidden because it contains spoiler information about the solution

  • Custom User Avatar

    Does it matter the order of the AssertEqual sentence?
    assertEquals(bagel.getValue() == 4, Boolean.TRUE);
    or
    assertEquals(Boolean.TRUE,bagel.getValue() == 4 );

  • Custom User Avatar

    Anyone made this WITHOUT using BigIntegers?
    I agree that, with BigIntegers it's too easy even for 5 kyu.

  • Custom User Avatar

    request timeout:aggregate error

    What does it mean, on my home pc it is run less than a second?

  • Custom User Avatar

    ok, i misunderstood something. thx

  • Custom User Avatar

    I think in the java tests there is some errors, eg.:

    At 119989884756 the expected is: [119989884756, 4, 0], but it should be [114998988756, 8, 2]

  • Custom User Avatar

    119989884756 should be [114998988756, 8, 2] right?

  • Custom User Avatar

    I think iterate from 81 to 3904305912313344l is impossible here.

  • Custom User Avatar

    Help, something ist right here:

    import java.math.BigInteger;

    public class Fibonacci {

    public static BigInteger fib(BigInteger n) {
    

    return BigInteger.ZERO;

    }
    

    }

    result:
    Submission timed out while communicating with our servers. This may infrequently happen if our servers are extremly busy.
    Please try again. If issues persist you can check status.codewars.com to see if server issues are being investigated.

  • Custom User Avatar

    Yes, of course.

  • Custom User Avatar

    May i send to you my code for inspection?

  • Custom User Avatar

    Yes. And its working.

  • Custom User Avatar

    It is in java.

  • Custom User Avatar

    when running the whole test suites:
    ****** Basic Tests bigger numbers******
    230, 4, 17
    430, 5, 17
    430, 8, 17
    880, 8, 17
    2430, 15, 17
    100, 2, 17
    276, 3, 17
    3760, 17, 17
    Unknown Test Failure

    when running this in the singel test suite:
    BasicTests1(SumOfKTest)
    ****** Basic Tests bigger numbers******
    230, 4, 17
    430, 5, 17
    430, 8, 17
    880, 8, 17
    100, 2, 17
    2430, 15, 17
    276, 3, 17
    3760, 17, 17
    Test Passed

    I simply do not understand. :(

  • Custom User Avatar

    what does it mean 'unknown test failure' ?

  • Loading more items...