Skip to content

Instantly share code, notes, and snippets.

View WamBamBoozle's full-sized avatar

Tom Howland WamBamBoozle

View GitHub Profile
@BeachBird
BeachBird / Anagrams.scala
Last active March 10, 2022 17:01
Functional Programming Principles in Scala. 5. Anagrams
package forcomp
import common._
object Anagrams {
/** A word is simply a `String`. */
type Word = String
/** A sentence is a `List` of words. */