Skip to content

Instantly share code, notes, and snippets.

View Galaxtone's full-sized avatar
😀
Smiles!

Galaxtone Galaxtone

😀
Smiles!
View GitHub Profile
@Galaxtone
Galaxtone / bruteforce.js
Last active May 16, 2018 01:00 — forked from LyricLy/bruteforce.py
Brute force Kolmogorov complexity for The Insane Esolang
var gen = (function() {
var alphabet = "26LHG15DZ83OCTNS9 KIFPVUJEB7W0MAQ4XYR";
function mod(x,y) {
if (x < 0) return mod(y-x,y);
if (x >= y) return mod(x-y,y);
return x;
}
function Ĭ(value) {