Board 8 > Puzzle contest: Winning board gets a $175 donation to their chosen charity.

Topic List
Page List: 1, 2
_stingers_
07/24/11 10:50:00 AM
#1:


so whats the puzzle

--
http://img.imgcake.com/nio/10stingerspngvu.png
http://www.youtube.com/profile?user=Apalachian
... Copied to Clipboard!
DetroitDJ
07/24/11 10:56:00 AM
#2:


The puzzle is:

011100100011010
010010110010111
011011101011100
010110011110010
011101010001011
010011111001110


Additional information:
- The first line is arbitrary. The rest aren't.

- No significance to ASCII or anything else binary-related. You could replace the 1s and 0s with any other pair of characters and it would still make sense. Each line could be made shorter or longer, too.

- There are basically two rules that determine each line (or each character of each line). These rules rely on an assumption as well for them to make sense.

Your goal is to describe the rule that determines each line, and to write the next two lines in the sequence. The rules must be described in the most simplistic way possible -- describing a series of rules that emerges from the core set of rules won't cut it.

I've posted the solution online somewhere that it's verifiable that I posted it before creating the contest, so that if there's a question about whether or not an answer is good enough, I can refer to the actual solution that was written before the contest started. Final judgment rests with me, though.

Good luck!

--
Follow on Twitter: www.twitter.com/ddjgames
For Top 10 lists, reviews, and assorted ramblings about being a mod.
... Copied to Clipboard!
DetroitDJ
07/24/11 10:59:00 AM
#3:


I've done a "$X per post in this topic in the next 24 hours" topic on CE a couple times, but this time I thought it might be fun to make it a bit of a competition.

I'll be doing this on four boards: Current Events, Random Insanity, Poll of the Day, and Board 8. First board to post the solution wins a $175 donation in its name (if possible) to the charity that the board chooses (we'll have a voting topic afterwards). The other three boards will each get a $50 donation.

I'll post the puzzle in a later post so that all four boards see it within a minute of each other, given the 3-topics-per-15-minutes rule.

A little background on the puzzle: it's an original creation of mine that I came up with about five months ago. I've run it by several people and no one's solved it, but I don't actually think it's that hard.

I'll post hints every 24 hours to all four boards. I'll make the donations on August 1st.

(And to anyone wondering if this qualifies as spamming since there's an actual prize involved: I checked with a Lead, and since the prize is going to a charity, not an individual, it's fine.)

Puzzle is posted in post #3

--
www.DDJGames.com -- Game reviews, articles, guides, lists, and more.
Latest: Introduction to the Future of Gaming (also @ GamingSymmetry.com)
... Copied to Clipboard!
Jeff Zero
07/24/11 11:01:00 AM
#4:


Oh boy.

--
Sir Chris Police ~Ace Detective in Homicide~
http://img.imgcake.com/Jeffzeropngus.png "Thanks Punny!"
... Copied to Clipboard!
Ness26
07/24/11 11:06:00 AM
#5:


Looks like it's a cellular automata.

Get a B8 chat going so other boards can't copy our work?

--
No amount of planning will ever replace dumb luck.
... Copied to Clipboard!
Jeff Zero
07/24/11 11:07:00 AM
#6:


We're discussing it in the usual AIM-based location, yeah.

--
Sir Chris Police ~Ace Detective in Homicide~
http://img.imgcake.com/Jeffzeropngus.png "Thanks Punny!"
... Copied to Clipboard!
Raka_Putra
07/24/11 11:08:00 AM
#7:


Just a wild guess...
01101010000000
01011111100001

--
Oh, I am one yet many.
... Copied to Clipboard!
Ness26
07/24/11 11:09:00 AM
#8:


011100100011010
010010110010111
011011101011100
010110011110010
011101010001011
010011111001110
Next two lines:
011010000101001
010111000111101

Logic coming later. Just want to post solution.

--
No amount of planning will ever replace dumb luck.
... Copied to Clipboard!
SuperAngelo128
07/24/11 11:09:00 AM
#9:


011010100000100
010111110101011

--
Want to listen to more video game music every day?
Check out the VGMusicoftheDay Youtube Channel sometime!
... Copied to Clipboard!
Jeff Zero
07/24/11 11:09:00 AM
#10:


Raka, you'll need to describe how you arrived at that conclusion as well so if it is truly a wild guess it won't cut it. He wants us to show our work.

--
Sir Chris Police ~Ace Detective in Homicide~
http://img.imgcake.com/Jeffzeropngus.png "Thanks Punny!"
... Copied to Clipboard!
Ayuyu
07/24/11 11:10:00 AM
#11:


Raka_Putra posted...
Just a wild guess...
01101010000000
01011111100001


Doubt it, from what I see the number of 0s always go down to leave more place for 1s.

--
Best LPer ever, Gix ! : http://www.youtube.com/watch?v=Vt5YKmP7ecY
... Copied to Clipboard!
SuperAngelo128
07/24/11 11:10:00 AM
#12:


I just went vertically and looked for a pattern

--
Want to listen to more video game music every day?
Check out the VGMusicoftheDay Youtube Channel sometime!
... Copied to Clipboard!
Dr_Football
07/24/11 11:10:00 AM
#13:


I got the same answer as Ness

--
http://img21.imageshack.us/img21/4839/drfc.png
http://img.imgcake.com/drfootballpngru.png
... Copied to Clipboard!
Raka_Putra
07/24/11 11:11:00 AM
#14:


Yeah, what Angelo said.

--
Oh, I am one yet many.
... Copied to Clipboard!
Ness26
07/24/11 11:11:00 AM
#15:


How my solution works:

For each new character, look at the character immediately above and to the left of that character. If they are the same, use 0. If they are different, use 1. If you go off of the board, assume the character is 0.

In short:
0 0
? 0

1 1
? 0

1 0
? 1

0 1
? 1

Is the rule table. I believe this works, yes?

--
No amount of planning will ever replace dumb luck.
... Copied to Clipboard!
SubDeity
07/24/11 11:12:00 AM
#16:


To add the logic, each number is determined by the values in the cells above and to the top-left of it. If the values above and to the top left are the same (or if there is no top-left cell at all), the cell value is 0, if they differ, the cell value is 1.

--
[Evil Republican]
Play Der Langrisser.
... Copied to Clipboard!
Dr_Football
07/24/11 11:12:00 AM
#17:


Yea thats what I essentially did Ness

--
http://img21.imageshack.us/img21/4839/drfc.png
http://img.imgcake.com/drfootballpngru.png
... Copied to Clipboard!
SubDeity
07/24/11 11:12:00 AM
#18:


Darn, beaten.

--
[Evil Republican]
Play Der Langrisser.
... Copied to Clipboard!
Ness26
07/24/11 11:13:00 AM
#19:


Bleh, CE beat us. Didn't see the puzzle until it was already posted. =P

--
No amount of planning will ever replace dumb luck.
... Copied to Clipboard!
Jeff Zero
07/24/11 11:14:00 AM
#20:


Yeah, they did.

--
Sir Chris Police ~Ace Detective in Homicide~
http://img.imgcake.com/Jeffzeropngus.png "Thanks Punny!"
... Copied to Clipboard!
Raka_Putra
07/24/11 11:14:00 AM
#21:


Aww, too bad. That was pretty fun though.

--
Oh, I am one yet many.
... Copied to Clipboard!
Ness26
07/24/11 11:16:00 AM
#22:


Hah, we won! Our ruleset is smaller than theirs!

--
No amount of planning will ever replace dumb luck.
... Copied to Clipboard!
DetroitDJ
07/24/11 11:17:00 AM
#23:


Actually, no -- y'all win. CE posted an answer before, but the description wasn't good enough -- the puzzle specifically requested the two rules be posted in the most simple way possible, not a set of rules that emerges from the simple set.

Congrats :)

--
Follow on Twitter: www.twitter.com/ddjgames
For Top 10 lists, reviews, and assorted ramblings about being a mod.
... Copied to Clipboard!
SubDeity
07/24/11 11:17:00 AM
#24:


Yeah, that's what I was thinking, so I was gonna go back to make sure and then start complaining, but it looks like Detroit was already a step ahead.

Whoo!

--
[Evil Republican]
Play Der Langrisser.
... Copied to Clipboard!
Raka_Putra
07/24/11 11:19:00 AM
#25:


Whoa, yay. Good job, guys!

--
Oh, I am one yet many.
... Copied to Clipboard!
Jeff Zero
07/24/11 11:19:00 AM
#26:


Whoo! We win! Now we gotta get to the really difficult part -- deciding on a charity. So many good ones. ;_;

--
Sir Chris Police ~Ace Detective in Homicide~
http://img.imgcake.com/Jeffzeropngus.png "Thanks Punny!"
... Copied to Clipboard!
SubDeity
07/24/11 11:20:00 AM
#27:


Alright, time to pick a charity.

I propose some sort of legal charity in the spirit of Phoenix Wright.

--
[Evil Republican]
Play Der Langrisser.
... Copied to Clipboard!
Dr_Football
07/24/11 11:20:00 AM
#28:


The charity of repaying people Icehawk conned into buying bad games

--
http://img21.imageshack.us/img21/4839/drfc.png
http://img.imgcake.com/drfootballpngru.png
... Copied to Clipboard!
Jeff Zero
07/24/11 11:21:00 AM
#29:


I recommend something toward Crohn's Disease since shadosneko has been diagnosed with it.

--
Sir Chris Police ~Ace Detective in Homicide~
http://img.imgcake.com/Jeffzeropngus.png "Thanks Punny!"
... Copied to Clipboard!
Raka_Putra
07/24/11 11:21:00 AM
#30:


the ertyu show charity

Or maybe for Norway, if they're accepting charities.

EDIT: Jeff's idea is also great.

--
Oh, I am one yet many.
... Copied to Clipboard!
Xuxon
07/24/11 11:22:00 AM
#31:


I like how he mentions how hard it is, no ones solved it, hints every 24 hours... and then two different people solve it within minutes.
... Copied to Clipboard!
X_Dante_X
07/24/11 11:22:00 AM
#32:


I was going to suggest something about literacy in honor of ertyu, but yeah I think Crohns would be good

--
boring and mundane signature
Now with more bold! Less Italics due to bold
... Copied to Clipboard!
Jeff Zero
07/24/11 11:22:00 AM
#33:


As is Raka's!

--
Sir Chris Police ~Ace Detective in Homicide~
http://img.imgcake.com/Jeffzeropngus.png "Thanks Punny!"
... Copied to Clipboard!
Ness26
07/24/11 11:23:00 AM
#34:


From: Xuxon | #031
I like how he mentions how hard it is, no ones solved it, hints every 24 hours... and then two different people solve it within minutes.


Clearly we need to give GameFAQs one of the Millennium Prize Problems cleverly disguised.

--
No amount of planning will ever replace dumb luck.
... Copied to Clipboard!
KommunistKoala
07/24/11 11:24:00 AM
#35:


I agree with Crohns for shadosneko

--
http://img.imgcake.com/KommunistKoala/koalajpgehsa.jpg
http://img.imgcake.com/KKpngat.png
... Copied to Clipboard!
DetroitDJ
07/24/11 11:26:00 AM
#36:


My fiancee has Crohn's, too, for what it's worth.

--
Follow on Twitter: www.twitter.com/ddjgames
For Top 10 lists, reviews, and assorted ramblings about being a mod.
... Copied to Clipboard!
SubDeity
07/24/11 11:27:00 AM
#37:


Here's a children't charity for Crohn's:

http://www.ccfa.org/

Also I checked its rating on a charity-evaluation site and it has an A- grade, so it won't scam us.

--
[Evil Republican]
Play Der Langrisser.
... Copied to Clipboard!
Jeff Zero
07/24/11 11:28:00 AM
#38:


From: DetroitDJ | #037
My fiancee has Crohn's, too, for what it's worth.


Oh wow. Then I feel all the more strongly about this.

--
Sir Chris Police ~Ace Detective in Homicide~
http://img.imgcake.com/Jeffzeropngus.png "Thanks Punny!"
... Copied to Clipboard!
Ness26
07/24/11 11:29:00 AM
#39:


I'll also throw in my support for Crohn's!

--
No amount of planning will ever replace dumb luck.
... Copied to Clipboard!
guwa
07/24/11 12:16:00 PM
#40:


For what it's worth, I propose Sick Kids Hospital in Toronto.

--
Petition to show Contributor Pages in profiles of closed accounts:
http://www.gamefaqs.com/boards/genmessage.php?board=7&topic=45541548
... Copied to Clipboard!
RappinHobo9292
07/24/11 12:21:00 PM
#41:


Even though I did no work on the puzzle I vote for Crohn's.

--
Will not change sig unless the Sens win the Stanley Cup. Started 2/19/07
... Copied to Clipboard!
DetroitDJ
07/24/11 12:27:00 PM
#42:


So, I've decided to actually give $175 on behalf of each board. My reasoning:
- CE, even though they didn't quite get the rules in the most succinct way possible, were first by a fair amount.
- Board 8 got the exact answer I was looking for.
- PotD and RI both came up with ways to describe the rule even more succinctly (XOR and binary addition, respectively).

Sorry, bank account. Yay, charity!

--
www.DDJGames.com -- Game reviews, articles, guides, lists, and more.
Latest: Introduction to the Future of Gaming (also @ GamingSymmetry.com)
... Copied to Clipboard!
RappinHobo9292
07/24/11 12:30:00 PM
#43:


DetroitDJ > Other mods

Woo

--
Will not change sig unless the Sens win the Stanley Cup. Started 2/19/07
... Copied to Clipboard!
foolmor0n
07/24/11 12:46:00 PM
#44:


Ah man I solved this in like a minute... if only I had seen the topic earlier.

Anyways, this was p cool, Detroit is easily the best mod ever. Though it's kind of sad that he has to associate with all the other mods...

--
_foolmo_
'Most people at least try to say something funny. See foolmo's post as an example.' - The Real Truth
... Copied to Clipboard!
Jeff Zero
07/24/11 12:50:00 PM
#45:


From: DetroitDJ | #042
So, I've decided to actually give $175 on behalf of each board. My reasoning:
- CE, even though they didn't quite get the rules in the most succinct way possible, were first by a fair amount.
- Board 8 got the exact answer I was looking for.
- PotD and RI both came up with ways to describe the rule even more succinctly (XOR and binary addition, respectively).

Sorry, bank account. Yay, charity!


You're one hell of a guy, DJ. Always liked you and now you're being ridiculously awesome.

Take that, FFVI Advance board laughing at me for calling you a legend! HAH!

--
Sir Chris Police ~Ace Detective in Homicide~
http://img.imgcake.com/Jeffzeropngus.png "Thanks Punny!"
... Copied to Clipboard!
WazzupGenius00
07/24/11 12:52:00 PM
#46:


Chiming in to say that DJ is easily the best mod on the forum, if not the bast staff member period

Also agreeing for some kind of Crohn's charity

--
(10:17:09 PM) Ed Bellis: i think pac-man just keeps repeating, for instance
(10:17:26 PM) ertyu: ya well tell that to billy michtlle
... Copied to Clipboard!
TheKnightOfNee
07/24/11 2:25:00 PM
#47:


I'd say the choice should weigh more to those who actually solved the puzzle. But as for my take, as someone who's family has people with Crohn's, I'd be all for giving money to the Crohn's and Colitis Foundation.

--
ONLY FIVE CAN LADDER.
Sushi, kamikaze, fujiyama, nippon-ichi...
... Copied to Clipboard!
Jeff Zero
07/24/11 2:27:00 PM
#48:


Well Ness solved it and gave his support of the Crohn's disease thing. :P

--
Sir Chris Police ~Ace Detective in Homicide~
http://img.imgcake.com/Jeffzeropngus.png "Thanks Punny!"
... Copied to Clipboard!
Justin_Crossing
07/24/11 2:53:00 PM
#49:


DDJ you are the most upstanding person ever.

--
~Acting on Impulse~
Black Turtle still didn't MAJORA'S MASK
... Copied to Clipboard!
the icon ownz all
07/24/11 2:54:00 PM
#50:


he is 10 times the mod raptorlc is.


--
ICON:
FUN FUN FUN FUN
... Copied to Clipboard!
Topic List
Page List: 1, 2