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.
Be careful. As is said in Description: "Same" means, here, that the elements in b are the elements in a squared, regardless of the order.
Thanks bro! How to see the test input? I was confused by the output '(15073)' should equal '(24)(3)(11)(43)(15073)', which made me thought that 15073 was the test input.
How to see this link you gave below?
test.assert_equals(prime_factors(342217392), "(24)(3)(11)(43)(15073)")
Your code is failing this testcase (Python):
You can always try printing the inputs to see which inputs are failing the tests, (See How can I see which input causes my solution to fail?)
15073 is a prime number but the answer is (2**4)(3)(11)(43)(15073). Can someone give me some explain? Thanks a lot!