Today, I have posted my first challenge in Code Golf. I have made the Job in 202 byte.
Someone in comments, have changed variables name. e.g:
From rot to o, and this renaming have saved 2 bytes.
...
Javascript (V8), 202 97 bytes
o=>r=>o.replace(/[a-zA-Z]/g,o=>String.fromCharCode((o<="Z"?90:122)>=(o=o.charCodeAt()+r)?o:o-26))
Try it online!
Since the text of input must be ma...
Erlang (escript), 43 bytes - cracked by Shaggy
main([])->
io:fwrite("Cops and Robbers").
Printing Cops and Robbers as the challenge says.
Try it online!