Search found 4 matches

by Abinmorth
Sat Dec 17, 2011 1:37 am
Forum: Challenges Solved
Topic: Forest for the Trees
Replies: 5
Views: 455

perfectly readable without manipulating anything if you look at it from the right angle
by Abinmorth
Fri Dec 16, 2011 10:04 pm
Forum: Challenges Solved
Topic: Valuation
Replies: 103
Views: 8938

c++

#include <iostream> #include <string> using namespace std; int main() { char value; int sum=0; string str = ("93752xxx746x27x1754xx90x93xxxxx238x44x75xx08750912738x8461x8759383xx328x4x4935903x6x5550360535004x0xx945958961296x267x8842xxx5x6xx61x4x48482x80xxx83316843x7x4x83x9521731xxx25x51xx457x6...
by Abinmorth
Tue Sep 27, 2011 2:15 pm
Forum: Challenges Solved
Topic: UpCount
Replies: 28
Views: 2433

easy to rewrite to cpp #include <iostream> using namespace std; long calc(int depth) { if (depth == 0) return 1; long cc = calc(depth - 1); return cc + (depth % 7) + ((((cc ^ depth) % 4) == 0) ? 1 : 0); } int main() { cout << calc(11589) << endl; system("Pause"); }
by Abinmorth
Tue Sep 13, 2011 6:38 am
Forum: Challenges Solved
Topic: Forced Entry
Replies: 17
Views: 1548

I got the answer letter for letter with

admin' AND ASCII(SUBSTRING(password, i, 1))>x -- e


just changing i and x

but when I got the pass, I couldnt log in ("wrong password") :shock:
it still worked on the challenge description site