Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
3 reasons why I think this approach should not be encouraged and should have 0 on Best Practices:
eval()
can be dagerous, especially if the input comes from an untrusted source. It can execute arbitrary code, leading to potential security vulnerabilities.eval()
can be slower than direct operations due to the overhead of parsing and interpreting the string.f meams that it is f-string and all variabels in it convert to string
This comment is hidden because it contains spoiler information about the solution
i would suggest you take a deep look for logical errors... it happened to me also ... errors are most likely to be found in expressions where your variable names are different than the code youre comparing
... otherwise ...
use chat gpt ... it may suggest some minor changes that you may have missed
I've found something similar too!