Back
Close

Decode my message

Statement

 Goal

The input string is encoded with a secret key. Your job is to work out the encoding pattern and decode the message
Input
Line 1: integer n - length of the input string
Line 2: input string n characters long
Output
1 line containing the decoded message n characters long
Constraints
1 < n <= 25
Example
Input
11
HFNOS CVZUN
Output
HELLO WORLD

Game modes
Reverse

Test cases
Test 1 Test
Input
11 HFNOS CVZUN
Output
HELLO WORLD

Validator 1 Validator
Input
9 WFNO IUUM
Output
WELL DONE

Test 2 Test
Input
9 CPFLRLGTM
Output
CODINGAME

Validator 2 Validator
Input
6 SVRHVG
Output
SUPERB

Test 3 Test
Input
9 EYEHPQKUB
Output
EXCELLENT

Validator 3 Validator
Input
13 EYVUETXKQWKCK
Output
EXTRAORDINARY

This should give it away Test
Input
8 ACEGI!!!
Output
ABCDE!!!

Validator 4 Validator
Input
11 INRRWXOITN?
Output
IMPOSSIBLE?

Solution language

Solution

Stub generator input