Topic: JavaScript Set Game (Page 1 of 1) |
|
---|---|
Obsessive-Compulsive (I) Inmate From: JavaScript World |
posted 08-25-2008 06:16
Hi, I'm new to this forum and just wanted to share one of my mini 'projects'. |
Nervous Wreck (II) Inmate From: |
posted 08-25-2008 17:23
Might want to check the validity of your links before posting them. |
Bipolar (III) Inmate From: |
posted 08-26-2008 05:39
Interesting puzzle - it's hard, makes my brain hurt |
Obsessive-Compulsive (I) Inmate From: JavaScript World |
posted 08-31-2008 17:23
The links are working. esskay managed to view the site. |
Obsessive-Compulsive (I) Inmate From: |
posted 09-12-2008 05:13
Cool! Set was one of the earliest games I developed when I was in highschool (in C with SDL.) |
Nervous Wreck (II) Inmate From: |
posted 10-23-2008 10:23
World of Warcraft Powerleveling |
Obsessive-Compulsive (I) Inmate From: JavaScript World |
posted 11-07-2008 11:19
quote:
|
Bipolar (III) Inmate From: |
posted 05-31-2011 11:11
Edit TP: spam removed
|
Nervous Wreck (II) Inmate From: Perth,WA,Australia |
posted 08-20-2011 09:11
Spam Bumped thread but I want to make comment anyway. code: 1 red 2 green 4 purple 8 empty 16 shaded 32 solid 64 oval 128 diamond 256 squiggle 512 1 1024 2 2048 3 a) red empty diamond 1 = 001 010 001 001 b) red shaded diamond 2 = 010 010 010 001 c) red solid diamond 3 = 100 010 100 001 bitPat = a OR b OR c = 111 010 111 001 score=0; for(i=0;i<4;i++) { bitCnt=0; for(j=0;j<3;j++) { bitCnt+=(bitPat & 1); bitPat>>1; }; if(bitCnt==3 || bitCnt==1) score++; }; if(score==4) alert("winner"); |