Skip to content

Instantly share code, notes, and snippets.

@mmloveaa
Last active April 7, 2016 05:59
Show Gist options
  • Save mmloveaa/f59c0eb0515d84dcbbaa92090f9946eb to your computer and use it in GitHub Desktop.
Save mmloveaa/f59c0eb0515d84dcbbaa92090f9946eb to your computer and use it in GitHub Desktop.
4-6 Decoder
function decoder(key,code){
return code.map(function(val){
return key[val];
}).join('');
}
decoder("ABCDEFGHIJKLMNOPQRSTUVWXYZ",[2, 14, 3, 8, 13, 6])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment