Skip to content

Instantly share code, notes, and snippets.

@zsteva
Last active June 8, 2024 13:20
Show Gist options
  • Save zsteva/848d9c62a50c1393133d69a4f27d0aa1 to your computer and use it in GitHub Desktop.
Save zsteva/848d9c62a50c1393133d69a4f27d0aa1 to your computer and use it in GitHub Desktop.
(() => { var s = [ ... document.getElementById("queens-grid").querySelectorAll(".queens-cell") ].map(e => e.className.match(/cell-color-(\d+)/)[1]).map(n => Number.parseInt(n).toString(32)).join(''); return s.match(new RegExp('.{1,' + Math.sqrt(s.length) + '}', 'g')).join('@'); })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment