Skip to content

Instantly share code, notes, and snippets.

@joeyadams
joeyadams / expected
Created March 15, 2011 15:01
Plain-text alternative to long division test suite
22
----
56|1234
112
---
114
112
---
2
83501
@joeyadams
joeyadams / long-division.c
Created March 14, 2011 21:07
Long division sample program and test suite
#if 0
function invoke {
n=$1
d=$2
# Add a line below to call your program. Examples:
# ./program-taking-arguments $n $d
# { echo $n; echo $d; } | ./program-reading-stdin
}