|
@ -30,10 +30,6 @@ func nextOasis(previous int, start []int) int { |
|
|
return current + nextOasis(current, levelBelow) |
|
|
return current + nextOasis(current, levelBelow) |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func previousOasis(previous int, start []int) int { |
|
|
|
|
|
return 0 |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
type day09 struct{} |
|
|
type day09 struct{} |
|
|
|
|
|
|
|
|
func (d day09) solve1(r io.Reader) string { |
|
|
func (d day09) solve1(r io.Reader) string { |
|
|