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