Skip to content

Commit

Permalink
Add file with expected interface. Refs exercism#137
Browse files Browse the repository at this point in the history
  • Loading branch information
ricemery committed May 16, 2017
1 parent 08ef3a5 commit 13d2a8e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions exercises/grade-school/src/main/scala/School.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
class School {
type DB = Map[Int, Seq[String]]

def add(name: String, g: Int) = ???

def db: DB = ???

def grade(g: Int): Seq[String] = ???

def sorted: DB = ???
}

0 comments on commit 13d2a8e

Please sign in to comment.