You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parallel-letter-frequency: remove failing test (exercism#1766)
The last test for the parallel-letter-frequency exercise is now
consistently failing as it runs out of memory. As this exercise is
quite complicated as well and could confused users, we've decided to
remove it.
Copy file name to clipboardExpand all lines: exercises/parallel-letter-frequency/README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,8 @@ list of texts and that employs parallelism.
9
9
10
10
# Tips
11
11
12
-
Single-threaded (non-concurrent) solutions can pass all tests [but the last.](https://www.youtube.com/watch?v=mJZZNHekEQw) Your solution will be tested for concurrency by submitting it as a [Runnable](https://docs.oracle.com/javase/7/docs/api/java/lang/Runnable.html) to an [ExecutorService.](https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ExecutorService.html) Your solution must leverage multiple [Threads](https://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html) to pass the final test.
12
+
Single-threaded (non-concurrent) solutions can pass all tests but you should try to implement the solution using parallelism.
13
+
You can do this by using multiple [Threads](https://docs.oracle.com/javase/7/docs/api/java/lang/Thread.html).
13
14
14
15
Java documentation on [parallel streams](https://docs.oracle.com/javase/tutorial/collections/streams/parallelism.html) may provide some help.
0 commit comments