Skip to content

Instantly share code, notes, and snippets.

View Zee2's full-sized avatar
💭
pushing pixels...

Finn Sinclair Zee2

💭
pushing pixels...
View GitHub Profile
U-Boot SPL 2020.01-00613-gd7bb6aceb2 (Jan 16 2020 - 18:34:54 -0600)
DRAM: 64 MiB
Trying to boot from MMC1
U-Boot 2020.01-00613-gd7bb6aceb2 (Jan 16 2020 - 18:34:54 -0600) Allwinner Technology
CPU: Allwinner V3s (SUN8I 1681)
Model: Lichee Pi Zero
DRAM: 64 MiB
@Zee2
Zee2 / main.dart
Last active December 3, 2018 15:47
173 HW 11
// Loosely inspired by http://interactivepython.org/courselib/static/pythonds/Recursion/DynamicProgramming.html
// However, used different data structure for coin choices and entirely different language + program structure.
void main() {
coins(10,2,3);
coins(10,5,7);
coins(0,1,3);
coins(100,8,7);
coins(-4,5,7);