Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug in Traversables exercise #126

Open
ghostbuster91 opened this issue Dec 2, 2018 · 0 comments
Open

Bug in Traversables exercise #126

ghostbuster91 opened this issue Dec 2, 2018 · 0 comments

Comments

@ghostbuster91
Copy link

val list = List(List(1, 2, 3), List(4, 5, 6), List(7, 8, 9))
list.transpose should be(List(
List(1,4,7), 
List(2,5,8), 
List(3,6,9)))

val list2 = List(List(1), List(4))
list2.transpose should be(List(List(1),List(4)))
Evaluation failed : Compilation Error ; ERROR -> too many arguments for method transposeFunctionTraversables: (res0: List[Int], res1: List[Int], res2: List[Int], res3: List[Int])Unit at [284, 284, 284]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant