Ad
  • Custom User Avatar

    You've renamed the function. The way the tests work is that they call your function with the function argument. If you rename the function, the tests try to call a function that doesn't exist which will cause an error. Also, the function input is a string, so your function wouldn't work correctly even if it had the correct name.

  • Custom User Avatar

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