From fb73b1cb9e15caa5c533f3902db470752b69f3ff Mon Sep 17 00:00:00 2001 From: factubsio <65080026+factubsio@users.noreply.github.com> Date: Mon, 14 Feb 2022 10:57:53 +0000 Subject: [PATCH] Clarify math expression operator precedence The description + examples leave this ambiguous, this change adds a hint. --- doc/source/basicgameplay/codingcontracts.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/source/basicgameplay/codingcontracts.rst b/doc/source/basicgameplay/codingcontracts.rst index 00feb7eba..51f68fc68 100644 --- a/doc/source/basicgameplay/codingcontracts.rst +++ b/doc/source/basicgameplay/codingcontracts.rst @@ -215,6 +215,7 @@ The list contains the name of (i.e. the value returned by | | | The answer should be provided as an array of strings containing the valid expressions. | | | | | | | | NOTE: Numbers in an expression cannot have leading 0's | +| | | NOTE: The order of evaluation expects script operator precedence | | | | | | | | Examples: | | | | Input: digits = "123", target = 6 |