Skip to content

Commit 8f224f4

Browse files
committed
Fixed link typos for other approaches and the filter function.
1 parent 1fdd47d commit 8f224f4

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

exercises/practice/wordy/.approaches/functools-reduce/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def answer(question):
119119
return result
120120
```
121121

122-
[approach-lambdas-in-a-dictionary]: https://exercise.org/tracks/python/exercises/wordy/approaches/lambdas-in-a-dictionary
122+
[approach-lambdas-in-a-dictionary]: https://exercism.org/tracks/python/exercises/wordy/approaches/lambdas-in-a-dictionary
123123
[callable]: https://treyhunner.com/2019/04/is-it-a-class-or-a-function-its-a-callable/
124124
[functools-reduce]: https://docs.python.org/3/library/functools.html#functools.reduce
125125
[method-chaining]: https://www.tutorialspoint.com/Explain-Python-class-method-chaining

exercises/practice/wordy/.approaches/import-callables-from-operator/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ equation = question.replace("by", "").split()
7676
```
7777

7878
[aliasing]: https://mimo.org/glossary/python
79-
[approach-string-list-and-dict-methods]: https://exercise.org/tracks/python/exercises/wordy/approaches/string-list-and-dict-methods
79+
[approach-string-list-and-dict-methods]: https://exercism.org/tracks/python/exercises/wordy/approaches/string-list-and-dict-methods
8080
[callable]: https://treyhunner.com/2019/04/is-it-a-class-or-a-function-its-a-callable/
8181
[chaining-method-calls]: https://nikhilakki.in/understanding-method-chaining-in-python
8282
[handling-exceptions]: https://docs.python.org/3.11/tutorial/errors.html#handling-exceptions

exercises/practice/wordy/.approaches/introduction.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -409,10 +409,10 @@ For more detail on this solution, take a look at the [dunder method with `__geta
409409
[approach-dunder-getattribute]: https://exercism.org/tracks/python/exercises/wordy/approaches/dunder-getattribute
410410
[approach-functools-reduce]: https://exercism.org/tracks/python/exercises/wordy/approaches/functools-reduce
411411
[approach-import-callables-from-operator]: https://exercism.org/tracks/python/exercises/wordy/approaches/import-callables-from-operator
412-
[approach-lambdas-in-a-dictionary]: https://exercise.org/tracks/python/exercises/wordy/approaches/lambdas-in-a-dictionary
413-
[approach-recursion]: https://exercise.org/tracks/python/exercises/wordy/approaches/recursion
414-
[approach-regex-with-operator-module]: https://exercise.org/tracks/python/exercises/wordy/approaches/regex-with-operator-module
415-
[approach-string-list-and-dict-methods]: https://exercise.org/tracks/python/exercises/wordy/approaches/string-list-and-dict-methods
412+
[approach-lambdas-in-a-dictionary]: https://exercsims.org/tracks/python/exercises/wordy/approaches/lambdas-in-a-dictionary
413+
[approach-recursion]: https://exercism.org/tracks/python/exercises/wordy/approaches/recursion
414+
[approach-regex-with-operator-module]: https://exercism.org/tracks/python/exercises/wordy/approaches/regex-with-operator-module
415+
[approach-string-list-and-dict-methods]: https://exercism.org/tracks/python/exercises/wordy/approaches/string-list-and-dict-methods
416416
[callable]: https://treyhunner.com/2019/04/is-it-a-class-or-a-function-its-a-callable/
417417
[dict-get]: https://docs.python.org/3/library/stdtypes.html#dict.get
418418
[dict]: https://docs.python.org/3/library/stdtypes.html#dict
@@ -421,6 +421,7 @@ For more detail on this solution, take a look at the [dunder method with `__geta
421421
[eval-danger]: https://softwareengineering.stackexchange.com/questions/311507/why-are-eval-like-features-considered-evil-in-contrast-to-other-possibly-harmfu
422422
[eval-destructive]: https://nedbatchelder.com/blog/201206/eval_really_is_dangerous.html
423423
[eval]: https://docs.python.org/3/library/functions.html?#eval
424+
[filter]: https://docs.python.org/3/library/functions.html#filter
424425
[find]: https://docs.python.org/3.9/library/stdtypes.html#str.find
425426
[functools-reduce]: https://docs.python.org/3/library/functools.html#functools.reduce
426427
[getattribute]: https://docs.python.org/3/reference/datamodel.html#object.__getattribute__

exercises/practice/wordy/.approaches/lambdas-in-a-dictionary/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ In addition, the functions need to carry a trailing underscore to avoid potentia
9191
It is better and cleaner in this circumstance to use `lambda expressions` for the functions - although it could be argued that importing and using the methods from `operator` is even better and clearer.
9292

9393
[approach-import-callables-from-operator]: https://exercism.org/tracks/python/exercises/wordy/approaches/import-callables-from-operator
94-
[approach-string-list-and-dict-methods]: https://exercise.org/tracks/python/exercises/wordy/approaches/string-list-and-dict-methods
94+
[approach-string-list-and-dict-methods]: https://exercism.org/tracks/python/exercises/wordy/approaches/string-list-and-dict-methods
9595
[filter]: https://docs.python.org/3/library/functions.html#filter
9696
[functools-reduce]: https://docs.python.org/3/library/functools.html#functools.reduce
9797
[key-functions]: https://docs.python.org/3/howto/sorting.html#key-functions

0 commit comments

Comments
 (0)