thank you
In all Codewars katas your returned code/function needs to have the same name as what appears in the Preloaded code.
In this case - confusingly - the kata wants you to return a function called solution; you have changed the name to sumAP and sumMultiples.
solution
sumAP
sumMultiples
Renamed your function sumMultiples to solution and it should work
I dont know why I am getting an ImportError. my code runs fine but its saying "cannot import solution from solution" im so confused.
Loading collection data...
thank you
In all Codewars katas your returned code/function needs to have the same name as what appears in the Preloaded code.
In this case - confusingly - the kata wants you to return a function called
solution
; you have changed the name tosumAP
andsumMultiples
.Renamed your function
sumMultiples
tosolution
and it should workI dont know why I am getting an ImportError. my code runs fine but its saying "cannot import solution from solution" im so confused.