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.
this very good solution, 👏👏
This comment is hidden because it contains spoiler information about the solution
[golang]
according to the description
why the test case
Prod2Sum(100, 100, 100, 100)
failed to return[(0,20000),(5600,19200)]
and return only
(0,20000)
you can find that
(5600*5600)+(19200*19200) = ((100*100) + (100*100)) * (100*100) + (100*100))
[Golang]
point1
package kat
should bepackage kata
point 2
Quote/space/Quantity/space/Price/space/Status
"MY SPACE"
so please try to remove this test case, or try to change the description.
point 3
Golang: the test cases use method
Gcd
which is not required to implement !I did submit my solution successfully and didn't find it in solutions list
in
Golang
the base code: there is issue with the func name it should be "Comp"thanks @g964 for your reply,
I reviewed my code again and it was my fault.
I'm using GO 1.11
I found an issues in my solution when i run locally
even after got the Best Practices solution the same issues still exist.