tracks/python/exercises/binary/README.md in trackler-2.2.1.53 vs tracks/python/exercises/binary/README.md in trackler-2.2.1.54
- old
+ new
@@ -5,14 +5,16 @@
Implement binary to decimal conversion. Given a binary input
string, your program should produce a decimal output. The
program should handle invalid inputs.
## Note
+
- Implement the conversion yourself.
Do not use something else to perform the conversion for you.
## About Binary (Base-2)
+
Decimal is a base-10 system.
A number 23 in base 10 notation can be understood
as a linear combination of powers of 10:
@@ -26,15 +28,14 @@
Binary is similar, but uses powers of 2 rather than powers of 10.
So: `101 => 1*2^2 + 0*2^1 + 1*2^0 => 1*4 + 0*2 + 1*1 => 4 + 1 => 5 base 10`.
-### 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