Skip to content

Commit c6a850d

Browse files
committed
Split up docs for parallel-letter-frequency (exercism#2713)
The fact that the tests are currently not checking for parallelism is no longer mentioned in the instructions. Resources about concurrency are moved to `hints.md`.
1 parent 171c937 commit c6a850d

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Hints
2+
3+
The following resources may help you with this:
4+
5+
- [Concurrency (Oracle Java Tutorials)](https://docs.oracle.com/javase/tutorial/essential/concurrency)
6+
- [Java Concurrency (Baeldung)](https://www.baeldung.com/java-concurrency)
7+
- [Java 8 Parallel Streams (Baeldung)](https://www.baeldung.com/java-8-streams#parallel-streams)
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
11
# Instructions append
22

3-
The automated tests are currently not checking for parallelism. Please ensure yourself that your solution is using some form of parallelism, like threads or parallel streams.
4-
5-
The following resources may help you with this:
6-
7-
- [Concurrency (Oracle Java Tutorials)](https://docs.oracle.com/javase/tutorial/essential/concurrency)
8-
- [Java Concurrency (Baeldung)](https://www.baeldung.com/java-concurrency)
9-
- [Java 8 Parallel Streams (Baeldung)](https://www.baeldung.com/java-8-streams#parallel-streams)
10-
113
As a stretch goal, consider if your implementation will work for characters with [diacritics or accents](https://en.wikipedia.org/wiki/Diacritic). For example, such solutions should not consider e and ë the same character. An example text for this case is [Wilhelmus](https://en.wikipedia.org/wiki/Wilhelmus), the Dutch national anthem.

0 commit comments

Comments
 (0)