Last active
August 2, 2016 18:37
-
-
Save LukaJCB/43b9e1cfde0d5893037d5a08a3c7fa2a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| val res = arr match { | |
| case Array(0) => "0" | |
| case Array(x, y) => x + " > " + y | |
| case Array(0, _*) => "0 > ..." | |
| case _ => "..." | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment