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.
is fuctional better performing? I assumr it's at least more readable.
not a kata suggestion
This comment is hidden because it contains spoiler information about the solution
11 tests passing and 20 tests failing with the below error. Tried changing the column orders just to see if that is the issue, which is not. I am not touching the objects in the given DFs. So unable to figure it out.
Give me some guidance.
Column types are different:
P float64
B float64
A float64
dtype: object
Should be
B float64
A float64
P float64
dtype: object
This comment is hidden because it contains spoiler information about the solution
Can I borrow your brain harddisk for sometime... Nice one
This comment is hidden because it contains spoiler information about the solution
Lesson learnt... We have to understand what we are trying to check, and then use the correct functions...
Algorithm needs to be re-thought in functional paradigm. This solution procedural.
Give functional a try....
The logic in the check() method seems to be wrong. Re-think with following questions
Follow the DRY (Don't Repeat Yourself) principle.That is why OOP was created.
All the very best.
This comment is hidden because it contains spoiler information about the solution
Clever implementation...
This comment is hidden because it contains spoiler information about the solution
Beginners struggling to wrap around OOPS concept will find this Kata very satisfactory
Yeah, you were right. I checked.
Loading more items...