Created
June 14, 2016 14:54
-
-
Save JRuumis/4ae569bbd1ccef50db3b7a87f474b39b to your computer and use it in GitHub Desktop.
nesmuki
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
| object MagicListMerger { | |
| def listCartesian ( list: List[List[Int]] ): List[List[Int]] = ??? | |
| val sourceList = | |
| List( | |
| List(1,2,3), | |
| List(10,20), | |
| List(100,200,300,400) | |
| ) | |
| val resultList = listCartesian(sourceList) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment