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.
is there any reason not getting any points after finally completed it?
I have just finished a kata on 4kyu and my honor only updataed in 1 point..
it looks like some other people have similiar problems
I worked realy hard completing this one..
any idea?
is it possible to allow choosing python 3 ? its only till 2.7
In other words string sort, ie.
alphabeticaly == alphanumerical sorting which uses the first char to sort any thing so a string starting with 1 is allways befor 2...
1
123
12345
2
234
3
...
it is sorted alpha numerical so a string starting with '1' is allways before a string starting with '9'
1
12345
2
2345
...
..
9
This comment is hidden because it contains spoiler information about the solution
?
string like "fghgfbn!!!dgfdfgdfg" should be parsed /splited to fghgfbn ,dgfdfgdfg ?
since the examples onlt refer to " sdfs, sdfsd " or " asd dfsdf sdfsdf"
i passed all the basic tests but the random cases seems to have different rulles...
Check your units
Prior to the "Go straight on for 900m" you were at an intersection...
So you cannot have been at [0,-1] because that represents [0,-100m] and the city blocks are 1km across
python-
i passed the first test
at the 2nd there is somthing i dont understand, and i see someone else here got same thing -
at the end of the directions - the go stright 900m (which is 0.9km) - so from [0,-1] > the change is in the y axe, so -1 + 0.9 = -0.1
how come the res should be -1?
is there somthing i dont understand in the details?
here is the output-
location0,-1
head is now NORTH
command num: 12 is : Go straight on for 900m
updating location
distance m : 0.9
location0,-0.09999999999999998
command num: 13 is : You have reached your destination!
updating location
location0,-0.09999999999999998
[0, -0.09999999999999998]
thanks
Try here https://gitter.im/Codewars/codewars.com/kata-solving-help
This comment is hidden because it contains spoiler information about the solution