The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
7answers
360 views

Make an application that determines if a sequence of numbers is sorted

Yet another installment of the weekly code-bowling game as the previous incarnation is over a week old and fairly well explored by now. As a refresher: Code-Bowling is a challenge for writing ...
12
votes
4answers
906 views

What is the longest legal statement block you can make with only C# keywords?

I was writing some code in C#, and I found myself writing: return new MyClass(... when I noticed that both the return and the new were both C# keywords. So I wondered what is the longest legal ...