Skip to content

Commit c38e94b

Browse files
authored
Update content.md (exercism#3829)
Add missing URI for "dictionary approach"
1 parent 2779c27 commit c38e94b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

exercises/practice/scrabble-score/.approaches/enum/content.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ The `score` function uses the same [generator expression][generator-expression]
4848
Instead of looking up the value in a _dictionary_, it looks up the `InEnum` class member value.
4949

5050
[classes]: https://docs.python.org/3/tutorial/classes.html
51+
[dictionary-approach]: https://exercism.org/tracks/python/exercises/scrabble-score/approaches/dictionary
5152
[enum]: https://docs.python.org/3/library/enum.html
5253
[generator-expression]: https://peps.python.org/pep-0289/
5354
[int-enum]: https://docs.python.org/3/library/enum.html#enum.IntEnum

exercises/practice/scrabble-score/.approaches/nested-tuple/content.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ You can read more about unpacking in the [concept:python/unpacking-and-multiple-
3030

3131
Then the code checks if the character is in the unpacked letters and if it is we return its score.
3232

33+
[dictionary-approach]: https://exercism.org/tracks/python/exercises/scrabble-score/approaches/dictionary
3334
[generator-expression]: https://peps.python.org/pep-0289/
3435
[for-loop]: https://realpython.com/python-for-loop/
3536
[tuple]: https://docs.python.org/3/tutorial/datastructures.html#tuples-and-sequences

0 commit comments

Comments
 (0)