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

wikipedia to Wikipedia #2457

Merged
merged 2 commits into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion exercises/bank-account/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Your task is to implement bank accounts supporting opening/closing, withdrawals, and deposits of money.

As bank accounts can be accessed in many different ways (internet, mobile phones, automatic charges), your bank software must allow accounts to be safely accessed from multiple threads/processes (terminology depends on your programming language) in parallel.
For example, there may be many deposits and withdrawals occurring in parallel; you need to ensure there is no [race conditions][wikipedia] between when you read the account balance and set the new balance.
For example, there may be many deposits and withdrawals occurring in parallel; you need to ensure there are no [race conditions][wikipedia] between when you read the account balance and set the new balance.

It should be possible to close an account; operations against a closed account must fail.

Expand Down
2 changes: 1 addition & 1 deletion exercises/go-counting/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Empty spaces represent empty intersections.

To be more precise an empty intersection is part of a player's territory if all of its neighbors are either stones of that player or empty intersections that are part of that player's territory.

For more information see [wikipedia][go-wikipedia] or [Sensei's Library][go-sensei].
For more information see [Wikipedia][go-wikipedia] or [Sensei's Library][go-sensei].

[go-wikipedia]: https://en.wikipedia.org/wiki/Go_%28game%29
[go-sensei]: https://senseis.xmp.net/
2 changes: 1 addition & 1 deletion exercises/nucleotide-codons/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ So TAR stands for TAA and TAG (think of "TAR" as "TA[AG]" in regex notation).
Write some code that given a codon, which may use shorthand, returns the name of the amino acid that that codon encodes for.
You will be given a list of non-shorthand-codon/name pairs to base your computation on.

See: [wikipedia][codon-table].
See: [Wikipedia][codon-table].

[codon-table]: https://en.wikipedia.org/wiki/DNA_codon_table
2 changes: 1 addition & 1 deletion exercises/poker/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

Pick the best hand(s) from a list of poker hands.

See [wikipedia][poker-hands] for an overview of poker hands.
See [Wikipedia][poker-hands] for an overview of poker hands.

[poker-hands]: https://en.wikipedia.org/wiki/List_of_poker_hands
2 changes: 1 addition & 1 deletion exercises/yacht/metadata.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
title = "Yacht"
blurb = "Score a single throw of dice in the game Yacht."
source = "James Kilfiger, using wikipedia"
source = "James Kilfiger, using Wikipedia"
source_url = "https://en.wikipedia.org/wiki/Yacht_(dice_game)"