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.
Could you please amend the 'Notes' or 'Good to know' to mention:
Polynomial terms whose coefficients are explicitly zero should be mentioned in the output, for example the input polynomial '58x^13-70x^10+0x^9' should return '754x^12-700x^9+0x^8' and not just '754x^12-700x^9'
The SymPy library cannot be imported
The description is too vague to be useful and needs to be clarified.
This comment is hidden because it contains spoiler information about the solution
Why not just run: max([j for j in v if (j - int(j))==0]) ? Or am I missing something?