tracks/lua/exercises/all-your-base/README.md in trackler-2.2.1.47 vs tracks/lua/exercises/all-your-base/README.md in trackler-2.2.1.48

- old
+ new

@@ -4,10 +4,11 @@ Implement general base conversion. Given a number in base **a**, represented as a sequence of digits, convert it to base **b**. ## Note + - Try to implement the conversion yourself. Do not use something else to perform the conversion for you. ## About [Positional Notation](https://en.wikipedia.org/wiki/Positional_notation) @@ -25,10 +26,9 @@ The number 1120, *in base 3*, means: (1 * 3^3) + (1 * 3^2) + (2 * 3^1) + (0 * 3^0) I think you got the idea! - *Yes. Those three numbers above are exactly the same. Congratulations!* ## Running the tests