Move test data to tinyApp directory

This commit is contained in:
Vitaliy.Bibaev
2018-06-07 19:57:05 +03:00
committed by Yan Zhulanow
parent ac4c42cc4b
commit 895e78d180
198 changed files with 132 additions and 99 deletions
@@ -0,0 +1,33 @@
LineBreakpoint created at DistinctByBigPrimitives.kt:5
Run Java
Connected to the target VM
DistinctByBigPrimitives.kt:5
(22..25).map { it * it }.asSequence()
.distinctBy({ it.toString().first() })
.count()
distinctBy
before: 1,3,5,6
after: 2,4,7
count
before: 2,4,7
after: nothing
mappings for distinctBy
direct:
1 -> 2
3 -> 4
5 -> 4
6 -> 7
reverse:
1 <- 2
3,5 <- 4
6 <- 7
mappings for count
direct:
2 -> nothing
4 -> nothing
7 -> nothing
reverse:
empty
Disconnected from the target VM
Process finished with exit code 0

Some files were not shown because too many files have changed in this diff Show More