Guess my word
41–50 of 60 posts
Re: Guess my word
#42Earlier quoted context omitted.
It does. The blue word is the closest guess before and the red word is the closest guess after.
Would be nice if it indicated it in some way beyond colour-coding, for the benefit of the colour-blind and those who don't catch on.
Re: Guess my word
#43Isn't this simply a game about how to do a binary search of a dictionary? How is that exciting?
I think it's more about how difficult it can be to do a binary search of the dictionary in your head. I don't want to spoil today's word, and I've tried not to below, although there are minor spoilers. Once I started to narrow it down it became difficult to find words between my constraints. In one case I was making assumptions about what letters can come after other ones while trying to generate a new word (and bein…
Re: Guess my word
#44 console.log(answer)Re: Guess my word
#45Re: Guess my word
#46Helped myself with some python, I guessed it in 16 tries. lines = tuple(open('english_words.txt', 'r')) min = 0; max = len(lines) while True : index = min + (max-min)//2 print lines[index]; before = raw_input("Before? y/n") if before == "y" : max = index-1 elif before == "n" : min = index+1 else : break english_words.txt can be downloaded here: http://www.mieliestronk.com/corncob_lowercase.txt
Re: Guess my word
#47Re: Guess my word
#48Re: Guess my word
#49Isn't this simply a game about how to do a binary search of a dictionary? How is that exciting?
I think it's more about how difficult it can be to do a binary search of the dictionary in your head. I don't want to spoil today's word, and I've tried not to below, although there are minor spoilers. Once I started to narrow it down it became difficult to find words between my constraints. In one case I was making assumptions about what letters can come after other ones while trying to generate a new word (and bein…
I think more important than a word cloud of guesses would be the progression of words to see people's thought process (dictionary vs conceptual).
And I'm not ashamed at all that I started with "monkey" after all, M is the 13th letter. ;)
Re: Guess my word
#50This is why we can't have nice things - remind me never to show HN anything that's just a bit of fun. Some people really will set the world on fire just to see if they can, and then just to watch it burn.
It's not what hacking used to be about. It used to be about making cool stuff, and people sharing and appreciating it. Now even the simplest of toys need to be bullet-proof and hardened.
I miss the old days.