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.
a.equals(b)
wherea
andb
is an instance ofVector
. But you are comparinga
's array witha
's resulting array (result
) which stores the result of last method call for that particular instance.oh i forgot to change the placeholder variable name
My equal method fails the first and second equality test, it returns a False but i can't see any correlation between '[1, 4, 9]' and '[1, 2, 3]' or '[9, 16, 25]' and '[3, 4, 5]' for them to be a True. How is this wrong? python