Skip to content

Instantly share code, notes, and snippets.

@goral09
Created July 22, 2015 19:04
Show Gist options
  • Save goral09/d6b014b5c937bc7e9a05 to your computer and use it in GitHub Desktop.
Save goral09/d6b014b5c937bc7e9a05 to your computer and use it in GitHub Desktop.
def hiddenMsg(kmer: Int, msg: String) = {
msg.sliding(kmer).foldLeft[Map[String, Int]](Map.empty) { case (acc, curr) =>
if (acc.isDefinedAt(curr)) acc.updated(curr, acc(curr) + 1)
else acc.updated(curr, 1)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment