Search found 6 matches
- Sat Jan 23, 2016 5:19 pm
- Forum: Challenges Solved
- Topic: Steganographic
- Replies: 11
- Views: 3851
You must be shitting me. I used OS X preview to filter colors in the picture and look for patterns. What I didn't know was that this automatically saved the changes to the picture. When I later was on the right track the answer was gone from the file. I later spent a whole day afterwards printing ou...
- Wed Aug 17, 2011 7:43 am
- Forum: Challenges Solved
- Topic: A Little Python
- Replies: 6
- Views: 1177
- Wed Aug 17, 2011 6:54 am
- Forum: Challenges
- Topic: Didactic XOR Long Cipher
- Replies: 16
- Views: 28501
c++ solved the problem
some for loops and if statements loosely narrowed down the possibilities, though a lot. first I made the program to print out all the different possibilities. pain in the ass I noticed: - first of all because the possibilities, though narrowed, were still many and for the computer to print out takes...
- Mon Aug 15, 2011 11:50 pm
- Forum: Challenges Solved
- Topic: The Powers That Be
- Replies: 27
- Views: 6949
- Mon Aug 15, 2011 3:58 pm
- Forum: Challenges Solved
- Topic: Valuation
- Replies: 103
- Views: 23712
c++ solved it for me: int chartoint(char ch) { ch = ch - 48; return int(ch); } int main() { char buff1 = '0'; char buff2 = '0'; char ch; int ans; cin.get(ch); while (ch != '\n') { if (isdigit(ch)) { ans += chartoint(ch); } else if (ch == 'x') { ans += chartoint(buff1) + chartoint(buff2); cin.get(ch)...
- Sun Aug 14, 2011 5:46 pm
- Forum: Challenges Solved
- Topic: UpCount
- Replies: 28
- Views: 6527
Nice solvings. c programmer as I am, I too did convert the code to c. however, I found it cleanest to just copy the function calc() and not make a class to call from: int calc(int depth) { if (depth == 0) return 1; int cc = calc(depth - 1); return ( cc + (depth % 7) + ((((cc ^ depth) % 4) == 0) ? 1 ...