Ad
  • Custom User Avatar

    dang how did we all end up with the exact same code lmfao

  • Custom User Avatar

    Much better than mine

  • Custom User Avatar

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

  • Custom User Avatar

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

  • Custom User Avatar

    When in Python the test reads:

    Test.assert_equals(boolean_to_string(True), "True", 'When we pass in true, we want the string "true" as output')
    Test.assert_equals(boolean_to_string(False), "False", 'When we pass in false, we want the string "false" as output')

    but the test is only passed if the strings that are outputted are capitalized (again in Python here) --- so the test in Python might should read

    Test.assert_equals(boolean_to_string(True), "True", 'When we pass in True, we want the string "True" as output')
    Test.assert_equals(boolean_to_string(False), "False", 'When we pass in False, we want the string "False" as output')