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

parallel-letter-frequency: align requirements with test #2026

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions exercises/parallel-letter-frequency/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ Parallelism is about doing things in parallel that can also be done
sequentially. A common example is counting the frequency of letters.
Create a function that returns the total frequency of each letter in a
list of texts and that employs parallelism.

Uppercase letters count towards their lowercase equivalent. Support
at least the extended Latin character set, so that unicode "ü" is
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are (at least) two ways to write ü. Either as a combined character of u (U+0075) and ̈ (U+0308) or as ü (U+00FC). This difference has tripped me up in the past in another exercise. Does this require support of both those options? Might be good to be quite specific here.

counted separately from "u". Punctuation and whitespace are ignored.