Skip to content

Instantly share code, notes, and snippets.

View azolotko's full-sized avatar
🛠️

Alex Zolotko azolotko

🛠️
  • Zaandam, The Netherlands
View GitHub Profile
@azolotko
azolotko / nonograms.clj
Last active August 14, 2019 19:29 — forked from skuro/forkme.clj
KS+AZ: Nonograms dojo
(ns nonograms.core
(:require [mikera.image.core :as img]
[mikera.image.colours :as col]))
(def foo (img/load-image-resource "100px-Greek_lc_lamda_thin.png"))
(def w (img/width foo))
(def h (img/height foo))
(def n 20)