Skip to content

Instantly share code, notes, and snippets.

@maksverver
maksverver / planet-explore.c
Last active August 21, 2016 00:22 — forked from skeeto/planet-explore.c
Planet exploration solver
/* 1) Immediately prints the base puzzle SVG to stdout.
* 2) Creates a path-*.svg each * time it hits a longest path.
* 3) Creates a solution-*.svg for each solution.
*/
#include <stdio.h>
#include <stdint.h>
#include <stdbool.h>
#define WIDTH 8u
#define HEIGHT 8u