blob: 7a06465c783860cd41401acda9d87b5230420d3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use v6;
use Test;
use AdventOfCode;
plan 5;
is spiral-memory(1), 0;
is spiral-memory(9), 2;
is spiral-memory(12), 3;
is spiral-memory(23), 2;
is spiral-memory(1024), 31;
|