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.
Hi
Thanks for your attention.
It is really a vain part of code whereas C# handle it.
Have a nice day.
Why bother with if > 255 check while you use byte anyway?
This comment is hidden because it contains spoiler information about the solution
The variables could have been name more clearly, but otherwise it's nice and simple solution!
It's too bad this hasn't gotten more Best Practice votes. I think this is the cleanest and simplest answer I've seen yet. Good job!
Hi dear Kata Writter.
Kata Test has problem.
Just look at below sample:
so it really expected:
but you expected it as:
I'm confused how and why third and fourth words "dolor" & "sit" which their length is less than 15 put in two separate lines????!!!
I have a problem with Mono compiler(c#) when try to retrive similar word from that IEnumerable, too:
words.ToArray()[ indexOfSimilarWord ]
when indexOfSimilarWord is retrive from other Array by same size as IEnumerable
when I convert IEnumerable to string Array there isnt any problem and all test is passed
What a defalcation!!!
despite of kata, just look at bank:
it is obvious that if three people buy three tickets finally should be 75 dollars in bank...
but in this algorithm after a [25 25 50] sequence we have only 50 dollars in bank, !!!
As what happened in algorithm: 25 + 25 - (50-25) + 25 = 50 !!!
Return True if every number in first array squared is in the second array else False.
66^2 is 4356.
4356 is not in the second array. Therefore, it is False.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Description says:
Do you think the multiplicities are the same in your example?
This Kata has an error in problem definition :
it suppose that two arrays should have same length...
but if we have
a=[2,-2]
and
b=[4]
it is true and doesnt violate any conditions in problem definition even though they are not same by Length...