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 kata is a subject to deduplication process here: https://github.com/codewars/content-issues/issues/191.
Please join the discussion to help us identify duplicate kata and retire them.
lol
You're absolutely right. I have updated the description. Thanks for raising this!
You're thinking of this, which also disregards order.
So yep, 100% the same thing.
steer(-1,-1) => "R: 135" // turn left for 135 degrees
shouldn't it be "L: 135" ?
I don't know how this got approved, but it's a duplicate.
This exact kata has been done. ( Well, without disregarding order, I think. )
It's too late to fix it I guess, so it's useless to mark it an issue and I can't be bothered to find the earlier kata. But exactly this has been done already.
:(
trigonometry is preferred :)
In this kata, am I being asked to do trigonometry or just to use whole number coordinates?
Cheers!
Cheers!
Cheers!
Example tests are missing a
}
at the end.In tests
LotsOfCoords
Assert.AreEqual(Kata.Steer(1,1), "R: 45");
should beAssert.AreEqual("R: 45",Kata.Steer(1,1));