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.
Use a loop for repeating statements.
Seems to be unreadable for humans...
Nice: Checking the count-variable in for-statement, so no need for extra break.
The string object has a Length-property, so using of System.Linq.Enumerable.Count() is not necessary.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Use constant definitions like SecondsPerMinute or SecondsPerHour instead of the magic numbers 60 or 3600.
Use constant definitions like SecondsPerMinute or MinutesPerHours instead of the magic numbers 60.
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
This comment is hidden because it contains spoiler information about the solution
Does not work properly, if the first element in "iterable" is default(T), e.g. { 0, 1, 2 } will return { 1, 2 }; the zero is missing.
This comment is hidden because it contains spoiler information about the solution