fork download
  1. function rot13(str) { // LBH QVQ VG!
  2. /*1) разбить строку, 2) пробежаться по массиву, получить индекс букв 3) соединить буквы + 13 */
  3.  
  4. for (var i = 0; i<str.length; i++) {
  5. var shit = str.charCodeAt(i);
  6. return shit;
  7. }
  8. }
  9. // Change the inputs below to test
  10. rot13("SERR CVMMN!");
Success #stdin #stdout 0.01s 30424KB
stdin
Standard input is empty
stdout
Standard output is empty