Initial import

This commit is contained in:
yan
2017-02-13 12:04:15 -05:00
commit badf1ab28e
196 changed files with 240345 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
main(){
int i,count;
unsigned char buffer[256];
read(0, buffer, 256);
for (i=0;i <256;i++)
buffer[i] = buffer[buffer[i]] ^ buffer[i];
count = 0;
for (i=0;i <256;i++)
count += buffer[i];
if (count == 0x414243)
printf("You won!");
return 0;
}