Skip to content

Instantly share code, notes, and snippets.

@lnds
Created January 10, 2016 16:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lnds/db41725f31dbb6c425eb to your computer and use it in GitHub Desktop.
Save lnds/db41725f31dbb6c425eb to your computer and use it in GitHub Desktop.
Ejemplo de If en Scala. Notar la primera condición
def validar(tam:Int, accion:String) : Option[Array[Int]] =
if (accion.exists(!_.isDigit))
None
else {
val num = accion.map(_.toInt - '0'.toInt).distinct
if (num.length == tam && num.length == accion.length)
Some(num.toArray)
else
None
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment