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.
yep exactly the same issue for me. i even checked with chat gpt to make sure i wasnt going crazy and missing something.
edit:
i realize now that there is a solution to get that test case. im surprised that chat gpt didn't get it.
OMG... the amount of time it took me to figure out WHY my code couldn't pass the one test... and then the extra time to figure out which rounding method to use... uugh
OK. Second thouths: you're right. If I dont cut after decimal my condition is met earlier...
Could it be done without iteration or recurdion....?
If your calculated population is higher than it should be, then you'll reach the target one in fewer years.
And that's what you wrote. The test is fine.
This would explain if I get greater number but I'm getting less than in test!
Read the description again:
You need to do that on each year if inhabitants is a float number.
When I realized that I passed over 200 tests, only to fail the last one, my jaw hit the floor
This comment is hidden because it contains spoiler information about the solution
You are right. I just made some random changes to see how this "kumite" works...
But I'm still not sure...
How is a lambda function an improvement? I checked it myself - perfomance of
def
andlambda
is almost identical. Also, one-liners do not improve readability in most cases. You made it shorter, removed choice of not preopening file. Preopening file is good for high perfomance, but it takes lots of RAM, so, sometimes it's better to keep the file closed until the moment you actually need it.This comment is hidden because it contains spoiler information about the solution