-
-
Save algesten/5543408 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alphabet = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789".split("") | |
base = alphabet.length | |
exports.encode = (i) -> | |
return alphabet[0] if i is 0 | |
s = "" | |
while i > 0 | |
s += alphabet[i % base] | |
i = parseInt(i / base, 10) | |
s.split("").reverse().join("") | |
exports.decode = (s) -> | |
i = 0 | |
for c in s | |
i = i * base + alphabet.indexOf c | |
i | |
# Poor man's test case | |
if require.main is module | |
for i in [0..100000] | |
if exports.decode(exports.encode(i)) isnt i | |
console.log exports.encode(i), i, "is not", exports.decode(exports.encode(i)) | |
console.log "error" | |
break | |
console.log "done" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment