package
0.0.0-20211003111303-bf095942a6eb
Repository: https://github.com/tlboright/golang-interview.git
Documentation: pkg.go.dev

# README

heapsort

Problem Definition

Code out heapsort using heap functions you define.

Questions to Ask

  • GOLANG SPECIFIC - Should I make heapsort just take int slices that I define?
  • Should I start the marking of the heap from 0 or 1? (In theory, we always start from 1)