learnrxjava icon indicating copy to clipboard operation
learnrxjava copied to clipboard

A set of exercises to designed to teach developers Rx (Reactive Streams)

Results 9 learnrxjava issues
Sort by recently updated
recently updated
newest added

Issue: https://github.com/jhusain/learnrxjava/issues/14 fixed.

From [ObservableSolutionsTest](https://github.com/jhusain/learnrxjava/blob/master/src/test/java/learnrxjava/ObservableSolutionsTest.java#L171): ``` assertEquals(map.get(70111470).toString(), "{boxart=http://cdn-0.nflximg.com/images/2891/DieHard150.jpg, id=70111470, title=Die Hard}"); ``` it [should be assertEquals(expected, actual)](http://junit.sourceforge.net/javadoc/org/junit/Assert.html#assertEquals%28java.lang.Object,%20java.lang.Object%29), not the other way around.

Because the solution is in the source code : https://github.com/jhusain/learnrxjava/blob/master/src/main/java/learnrxjava/ComposableListExercises.java#L374 (I know it is easy to cheat but still :smile: )

Hey there, it may be useful if you have some spare time to implement some of the advent calendar (http://adventofcode.com/) solutions with RxJava. I have been trying to use them...

Test 1, 2, 3 and 15 in ComposableListExercises are already solved when checking this out. Is it supposed to be like that? Are these meant to be examples of sorts?

The implementations of reduce were fixed. They used to iterate over the same element in the list, now it correctly iterates over every element in the list. concatMap was made...