Remove dead code from day 3

master
Nick Krichevsky 2019-12-03 01:51:49 -05:00
parent eaf9823a9b
commit 63480b79fd
1 changed files with 0 additions and 16 deletions

View File

@ -81,22 +81,6 @@ func abs(n int) int {
return n return n
} }
func max(a, b int) int {
if a > b {
return a
}
return b
}
func min(a, b int) int {
if a < b {
return a
}
return b
}
// makeDeltaPoint makes a point that represents the delta produced by the path component // makeDeltaPoint makes a point that represents the delta produced by the path component
func makeDeltaPoint(pathComponent string) (Point, error) { func makeDeltaPoint(pathComponent string) (Point, error) {
direction := Direction(pathComponent[0]) direction := Direction(pathComponent[0])