404 forum

Discussion about 404

Back to the main 404 site

You are not logged in.

Announcement

If you are trying to register, please email gareth@anypuzzle.com - new registrations are currently locked to minimize spam.
Posting rules
  • Please do not post solutions to puzzles, but rather post hints as appropriate in response to queries
  • Type [spoiler] ... [/spoiler] around the outside of any hints so they can't be read by accident - e.g. [spoiler]have you tried looking at the corner of the page?[/spoiler]

#1 2020-09-14 09:07:01

AcidBurn39
Member
Registered: 2020-08-11
Posts: 120

LOST :(

Do I need to know coding language?
Completely lost on this one.
How to start?
Any hints please? Guided solution??

Last edited by AcidBurn39 (2020-09-15 07:03:01)

Offline

#2 2020-09-14 15:18:21

mcwuzzy
Member
Registered: 2020-01-27
Posts: 34

Re: LOST :(

AcidBurn39 wrote:

Do I need to know coding language?
Compl;etely lost on this one.
How to start?
Any hints please? Guided solution??

You can solve it without understanding coding

▼Spoiler

The first thing to notice is We must change the instruction to Deny Match, Find Rebel just won't work

▼Spoiler

The code is just a loop selecting a different letter from the instruction at each iteration

▼Spoiler

index increments from 0

▼Spoiler

changes takes the value from it's list that corresponds to the value of index

▼Spoiler

The first loop it is 1, the second loop it is 1, the third loop it is -2, the fourth loop it is 4, etc.

▼Spoiler

offset becomes its own value plus the current value of changes

▼Spoiler

the first loop it is 0 (initial offset value) + 1 (the first changes value

▼Spoiler

this makes the first letter to be printed E as DENY MATCH is numbered 0123456789 (4 is the space)

▼Spoiler

loop 2 offset then becomes 2, 1 (its current value) plus 1, the second changes value and the letter is N

▼Spoiler

loop 3 offset then becomes 0, 2 (its current value) plus -2, the third changes value = 2 and the letter is D

▼Spoiler

loop 4 offset then becomes 4, 0 (its current value) plus 4, the fourth changes value = 2 and the letter is space

and continue to the end!

Offline

#3 2020-09-15 07:23:45

AcidBurn39
Member
Registered: 2020-08-11
Posts: 120

Re: LOST :(

SOLVED
The upper hints help smile

▼Spoiler

E - -
T - -
A - - - - - -

Last edited by AcidBurn39 (2020-09-15 07:33:54)

Offline

Board footer

Powered by FluxBB