Geek Puzzle

For everything that's not in any way related to PureBasic. General chat etc...
User avatar
Rook Zimbabwe
Addict
Addict
Posts: 4322
Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:

Post by Rook Zimbabwe »

54 to 72 is 18 (6 to H)
72 to 81 is 9 (H to Q)
81 to 90 is 9 (Q to Z)
so
c or lower case L

http://www.asciitable.com/
Binarily speaking... it takes 10 to Tango!!!

Image
http://www.bluemesapc.com/
Irene
Enthusiast
Enthusiast
Posts: 461
Joined: Thu Oct 04, 2007 12:41 pm

Post by Irene »

Rook Zimbabwe wrote:54 to 72 is 18 (6 to H)
72 to 81 is 9 (H to Q)
81 to 90 is 9 (Q to Z)
so
c or lower case L
You're leading to the wrong path, but you're not wrong with the lower case L being one of the characters that I'm looking for ^_^

EDIT: Oh I see it's page 11 already, well if anyone missed my puzzle from page 10 here it is:
Irene wrote:What comes next?? ^o^

6, H, Q, Z,

Hints:
1. There are 2 characters that can come next.
2. The characters may only be alphanumerical.
3. The characters may only be in ASCII (no Unicode).
4. The number 9 might help you, maybe not..
EDIT2: I just saw that one might misunderstand hint #1; what I mean is 2 characters in sequence e.g. x, y and not x or y. Sorry for any inconvenience >_<
Last edited by Irene on Wed Oct 24, 2007 8:30 pm, edited 1 time in total.
User avatar
Rook Zimbabwe
Addict
Addict
Posts: 4322
Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:

Post by Rook Zimbabwe »

lower case L and lower case U
:D

OK Irene (and all of you!)
what comes next:
00,19/00,24/00,24/___,____

and for Irene:
00,23/00,19/00,18/00,49/__,__

and Happy Birthday! What kind of cake did you have? Can you mail me a piece?
Binarily speaking... it takes 10 to Tango!!!

Image
http://www.bluemesapc.com/
Irene
Enthusiast
Enthusiast
Posts: 461
Joined: Thu Oct 04, 2007 12:41 pm

Post by Irene »

Rook Zimbabwe wrote:lower case L and lower case U
:D
Still wrong unfortunately..

Here's some PureBasic code to get you up ^o^ (I know it's not optimized well, please don't criticize!!)

Code: Select all

AlphabetSmall$ = "abcdefghijklmnopqrstuvwxyz"
AlphabetBig$ = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
Numbers$ = "0123456789"

For i = 1 To Len(Numbers$)
 Char$ = Mid(Numbers$, i, 1)
 If Val(Left(Str(Asc(Char$)), 1)) + Val(Right(Str(Asc(Char$)), 1)) = 9
  Debug Char$
 EndIf
Next
For i = 1 To Len(AlphabetBig$)
 Char$ = Mid(AlphabetBig$, i, 1)
 If Val(Left(Str(Asc(Char$)), 1)) + Val(Right(Str(Asc(Char$)), 1)) = 9
  Debug Char$
 EndIf
Next
For i = 1 To Len(AlphabetSmall$)
 Char$ = Mid(AlphabetSmall$, i, 1)
 If Val(Left(Str(Asc(Char$)), 1)) + Val(Right(Str(Asc(Char$)), 1)) = 9
  Debug Char$
 EndIf
Next
#NULL
Addict
Addict
Posts: 1497
Joined: Thu Aug 30, 2007 11:54 pm
Location: right here

Post by #NULL »

:cry: that's typical. the only puzzle i solve is removed imediately and never was there, just as my post :P :lol:
User avatar
Rook Zimbabwe
Addict
Addict
Posts: 4322
Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:

Post by Rook Zimbabwe »

I don't get it then... 18 from Z is l(lower case L) 9 from Z is lower c, and 9 from lower L is u... 18, 9, 9, 18, 9... unless you are inting 6 3 which makes 9... then the answer would be hl
Binarily speaking... it takes 10 to Tango!!!

Image
http://www.bluemesapc.com/
citystate
Enthusiast
Enthusiast
Posts: 638
Joined: Sun Feb 12, 2006 10:06 pm

Post by citystate »

Irene wrote:
Rook Zimbabwe wrote:lower case L and lower case U
:D
Still wrong unfortunately..

Here's some PureBasic code to get you up ^o^ (I know it's not optimized well, please don't criticize!!)<snip>
</snip>
the characters would be lowercase L and lowercase V - Irene's algorithm is totaling the first and last digit of the ascii code and accepting it if it equals 9

(the character '?' could also be included between the 6 and H - if it wasn't a non-alphanumeric that is)
there is no sig, only zuul (and the following disclaimer)

WARNING: may be talking out of his hat
User avatar
Rook Zimbabwe
Addict
Addict
Posts: 4322
Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:

Post by Rook Zimbabwe »

:oops: Read the code... read the code... :oops:

Mine is really simple once you see the trick to it... Irenes example has the answer in it... :wink:
and for Irene:
00,23/00,19/00,18/00,49/__,__
Binarily speaking... it takes 10 to Tango!!!

Image
http://www.bluemesapc.com/
Post Reply