Search found 8 matches
- Tue Feb 15, 2011 11:30 pm
- Forum: Challenges Solved
- Topic: Broken XOR 3
- Replies: 7
- Views: 652
my approach is pretty fast (it takes only a few secs) but it is not perfect. btw, don't look at the goto's hehe class FalsePositive { public int Index { get; set; } public int Length { get; set; } public byte Key { get; set; } public FalsePositive(int index, int length, byte key) { Index = index; Le...
- Tue Feb 15, 2011 9:58 pm
- Forum: Challenges
- Topic: Latin Lesson
- Replies: 11
- Views: 25578
- Tue Feb 15, 2011 9:13 pm
- Forum: Challenges Solved
- Topic: A Repeat of Pi
- Replies: 21
- Views: 1962
- Fri Feb 11, 2011 9:12 pm
- Forum: Challenges
- Topic: A Piece of Pi challenge
- Replies: 10
- Views: 13746
- Sun Feb 06, 2011 2:50 pm
- Forum: Challenges Solved
- Topic: Pi Hates Nines
- Replies: 26
- Views: 3333
solved in c#
Code: Select all
using (StreamReader sr = new StreamReader(File.OpenRead("pi.txt")))
{
Console.WriteLine(sr.ReadToEnd().Split('9').OrderByDescending(x => x.Length).First());
}
- Sat Feb 05, 2011 10:14 pm
- Forum: Challenges
- Topic: Maeda Path?
- Replies: 12
- Views: 17871
- Sat Feb 05, 2011 4:39 pm
- Forum: Challenges
- Topic: Floating
- Replies: 17
- Views: 24780
this challenge really sucks ... i should have the correct number (8.xxxxxxxxxxxxxxxxxxxx) but it won't take my answer. I tried to round up / down to nearly every digit. I tried to round like wikipedia says (see: IEEE 754). Tried a ',' instead of '.' but nope ... everything is incorrect. That challen...
- Thu Feb 03, 2011 11:41 pm
- Forum: Challenges
- Topic: 'Bit Test' challenge... the strange coding.. please help me.
- Replies: 48
- Views: 58222