Skip to content

Instantly share code, notes, and snippets.

@Teqqles
Created June 2, 2015 13:57
Show Gist options
  • Save Teqqles/7436d512d7b1ed0ceb31 to your computer and use it in GitHub Desktop.
Save Teqqles/7436d512d7b1ed0ceb31 to your computer and use it in GitHub Desktop.
Fizz Buzz solution in Scala
object FizzBuzz {
def getResult( value:Int ) : String = {
value % 3 -> value % 5 match {
case ( 0, 0 ) => "fizzbuzz"
case ( 0, _ ) => "fizz"
case ( _, 0 ) => "buzz"
case _ => value.toString
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment