Ad
  • Custom User Avatar

    Oh damn! SORRY, of course! Thanks!

  • Custom User Avatar

    You are returning the wrong string.

    Change:

    "even number"   --->   "Even"
    
    "odd number"    --->   "Odd"
    
  • Custom User Avatar

    You're meant to return your output and not print to the console (using print()). Replace print with return. All Katas on the website work like this.

    Also you don't have to call the function manually since the testcases will automatically call the function for you.

  • Custom User Avatar

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