Skip to content

Instantly share code, notes, and snippets.

@mstachniuk
Created October 30, 2013 18:59
Show Gist options
  • Save mstachniuk/7238111 to your computer and use it in GitHub Desktop.
Save mstachniuk/7238111 to your computer and use it in GitHub Desktop.
S99 P18 Solution
package pl.japila.scalania.s99
object S99_P18 {
def slice[T](from: Int, to: Int, ts: Seq[T]): Seq[T] = { ts drop from take to - from}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment