Your score: 1700 pts
Check the following pseudo-code to work out the passcode needed to complete this level:
Check the following pseudo-code to work out the passcode needed to complete this level:
FUNCTION reduce(text) newText = LEFT(text,2) + RIGHT(text,2) RETURN newText END FUNCTION BEGIN password = "457892060" passcode = reduce(password) passcode = LEFT(passcode,4) OUTPUT passcode END