But adding zero to the sum shouldn't be problematic?
//okay, got it.
Search found 3 matches
- Sun Nov 16, 2008 5:10 pm
- Forum: Challenges
- Topic: Valuation - piece of code won't work
- Replies: 6
- Views: 10886
- Sun Nov 16, 2008 3:28 pm
- Forum: Challenges
- Topic: Valuation - piece of code won't work
- Replies: 6
- Views: 10886
Valuation - piece of code won't work
Hi there, to solve 'Valuation', I've written a small piece of C#-code. static int recalc(int dx) { return dx - 48; } [...] while(cnt < arrText.Length) { if (false == Char.IsDigit(arrText[cnt])) { // if 'x' occurs, set it to zero and move left arrText[cnt] = '0'; // write ASCII-'0' as char ('48' in d...
- Tue Nov 04, 2008 6:29 pm
- Forum: Challenges Solved
- Topic: More Dastardly
- Replies: 10
- Views: 1136
More Dastardly
How do you've solved this challenge?
I've found the the solution thorugh google (cracked by milw0rm), but I guess it's not the correct way.
On the other hand, finding collisions in md5 isn't that easy..
I've found the the solution thorugh google (cracked by milw0rm), but I guess it's not the correct way.
On the other hand, finding collisions in md5 isn't that easy..