Ad
  • Custom User Avatar

    In python, the following default test case doesn't run because r is not a valid variable:

    print "current List: %r"%r

    changing to the following works fine:

    print "current List: %r"%a

  • Custom User Avatar

    I was totally confused with the last python set test case:

    Test.assert_equals(lowest_product("1234111"),4,"Numbers should be consecutives");

    The string "Numbers should be consecutives" should be dropped, as based on the description, the test case stands as proper, and this test case is super confusing.