From 2ee6d6783517c766f24f93f86549fe7148f4e829 Mon Sep 17 00:00:00 2001 From: David Sletten Date: Sat, 11 Jun 2022 00:29:14 -0400 Subject: [PATCH] Update instructions.md Multiplication (*) incorrectly represented via underscore character. --- exercises/practice/all-your-base/.docs/instructions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/practice/all-your-base/.docs/instructions.md b/exercises/practice/all-your-base/.docs/instructions.md index 858f0815e4..10bd053d39 100644 --- a/exercises/practice/all-your-base/.docs/instructions.md +++ b/exercises/practice/all-your-base/.docs/instructions.md @@ -17,15 +17,15 @@ combination of powers of **b**. The number 42, _in base 10_, means: -(4 _ 10^1) + (2 _ 10^0) +(4 * 10^1) + (2 * 10^0) The number 101010, _in base 2_, means: -(1 _ 2^5) + (0 _ 2^4) + (1 _ 2^3) + (0 _ 2^2) + (1 _ 2^1) + (0 _ 2^0) +(1 * 2^5) + (0 * 2^4) + (1 * 2^3) + (0 * 2^2) + (1 * 2^1) + (0 * 2^0) The number 1120, _in base 3_, means: -(1 _ 3^3) + (1 _ 3^2) + (2 _ 3^1) + (0 _ 3^0) +(1 * 3^3) + (1 * 3^2) + (2 * 3^1) + (0 * 3^0) I think you got the idea!