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.
Hello everyone,
I'm stuck with my PureScript implementation.
It passes all manual test cases. When it comes to the generated tests though, the inputs comprise of over a hundred fractions.
Even after simplifying, their common denominator would overflow the Int type giving an implredictable value.
There are data types to handle big numbers but in the end I am constrained to return them back as Ints anyway, which defeats the point of such a convertion.
Could somebody who accomplished this exercise in Purescript confirm that all the fractions are reductible to numbers within the Int range and my algorithm is just wrong,
or perhaps that is a deliberate catch of this exercise and the solution requires a different take?