We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug When I submitted my code for a kata, it gave the error.
To Reproduce def create_phone_number(n): if len(n) != 10: raise ValueError("List must contain exactly 10 numbers.") numbers_str = ''.join(map(str, n)) formatted_phone_number = f"({numbers_str[:3]}) {numbers_str[3:6]}-{numbers_str[6:]}" return formatted_phone_number
Expected behavior I expected it to say "code submitted!" or something similar then take me to the discussions page.
Screenshots
Browser I am on Chrome.
Additional context This has not happened for any other Kata I have done, ever.
The text was updated successfully, but these errors were encountered:
Duplicate of #3209
Sorry, something went wrong.
No branches or pull requests
Describe the bug
When I submitted my code for a kata, it gave the error.
To Reproduce
def create_phone_number(n):
if len(n) != 10:
raise ValueError("List must contain exactly 10 numbers.")
numbers_str = ''.join(map(str, n))
formatted_phone_number = f"({numbers_str[:3]}) {numbers_str[3:6]}-{numbers_str[6:]}"
return formatted_phone_number
Expected behavior
I expected it to say "code submitted!" or something similar then take me to the discussions page.
Screenshots
Browser
I am on Chrome.
Additional context
This has not happened for any other Kata I have done, ever.
The text was updated successfully, but these errors were encountered: