8 lines
140 B
Go
8 lines
140 B
Go
//go:build !solution
|
|
// +build !solution
|
|
|
|
package hogwarts
|
|
|
|
func GetCourseList(prereqs map[string][]string) []string {
|
|
return []string{}
|
|
}
|