tracks/python/exercises/pythagorean-triplet/README.md in trackler-2.2.1.53 vs tracks/python/exercises/pythagorean-triplet/README.md in trackler-2.2.1.54
- old
+ new
@@ -1,29 +1,28 @@
# Pythagorean Triplet
A Pythagorean triplet is a set of three natural numbers, {a, b, c}, for
which,
-```
+```text
a**2 + b**2 = c**2
```
-For example,
+For example,
-```
+```text
3**2 + 4**2 = 9 + 16 = 25 = 5**2.
```
There exists exactly one Pythagorean triplet for which a + b + c = 1000.
Find the product a * b * c.
-### Submitting Exercises
+## Submitting Exercises
Note that, when trying to submit an exercise, make sure the solution is in the `exercism/python/<exerciseName>` directory.
For example, if you're submitting `bob.py` for the Bob exercise, the submit command would be something like `exercism submit <path_to_exercism_dir>/python/bob/bob.py`.
-
For more detailed information about running tests, code style and linting,
please see the [help page](http://exercism.io/languages/python).
## Source