Search found 4 matches
- Mon May 16, 2011 8:12 am
- Forum: Challenges Solved
- Topic: Delegates
- Replies: 17
- Views: 2174
- Sun May 15, 2011 11:13 pm
- Forum: Challenges Solved
- Topic: UpCount
- Replies: 28
- Views: 2530
i ported in C# namespace ConsoleApplication1 { class Program { private long calc(int depth) { if (depth == 0) return 1; long cc = calc(depth - 1); return cc + (depth % 7) + ((((cc ^ depth) % 4) == 0) ? 1 : 0); } static void Main(string[] args) { Program uc = new Program(); Console.WriteLine(uc.calc(...
- Sun Nov 29, 2009 8:28 pm
- Forum: Challenges
- Topic: Challenge 'File Mystery
- Replies: 20
- Views: 44953
- Sun Feb 22, 2009 1:38 pm
- Forum: Challenges Solved
- Topic: Follow the Logic
- Replies: 13
- Views: 1406