Sha256: bb1e78607708afcee94b4ba74f789172d5a91c5bd8774cfd0c5b11d0d648fd49
Contents?: true
Size: 491 Bytes
Versions: 86
Compression:
Stored size: 491 Bytes
Contents
module GradeSchool let empty: Map<int, string list> = failwith "You need to implement this function." let add (student: string) (grade: int) (school: Map<int, string list>): Map<int, string list> = failwith "You need to implement this function." let roster (school: Map<int, string list>): (int * string list) list = failwith "You need to implement this function." let grade (number: int) (school: Map<int, string list>): string list = failwith "You need to implement this function."
Version data entries
86 entries across 86 versions & 1 rubygems