Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. ['2 1 14 16 23 20', '2 1 15 6 4 23', '2 1 15 6 8 6'].forEach(function (s) {
  2. console.log(parseInt(s.split(' ').map(function (n) {
  3. return parseInt(n, 10).toString(25);
  4. }).join(''), 25));
  5. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement