mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-09 09:13:52 +01:00
Fix doc typo for "Sanitize Parentheses in Expression" contract (#389)
This commit is contained in:
parent
18eeb7c4e1
commit
f50b731846
@ -249,9 +249,9 @@ The list contains the name of (i.e. the value returned by
|
|||||||
| | | the string, the result should be an array with only an empty string. |
|
| | | the string, the result should be an array with only an empty string. |
|
||||||
| | | |
|
| | | |
|
||||||
| | | Examples: |
|
| | | Examples: |
|
||||||
| | | ()())() -> [()()(), (())()] |
|
| | | "()())()" -> ["()()()", "(())()"] |
|
||||||
| | | (a)())() -> [(a)()(), (a())()] |
|
| | | "(a)())()" -> ["(a)()()", "(a())()"] |
|
||||||
| | | )( -> [""] |
|
| | | ")(" -> [""] |
|
||||||
+-----------------------------------------+------------------------------------------------------------------------------------------+
|
+-----------------------------------------+------------------------------------------------------------------------------------------+
|
||||||
| Find All Valid Math Expressions | | You are given a string which contains only digits between 0 and 9 as well as a target |
|
| Find All Valid Math Expressions | | You are given a string which contains only digits between 0 and 9 as well as a target |
|
||||||
| | | number. Return all possible ways you can add the +, -, and * operators to the string |
|
| | | number. Return all possible ways you can add the +, -, and * operators to the string |
|
||||||
|
@ -1073,8 +1073,8 @@ export const codingContractTypesMetadata: ICodingContractTypeMetadata[] = [
|
|||||||
"the result should be an array with only an empty string.\n\n",
|
"the result should be an array with only an empty string.\n\n",
|
||||||
"IMPORTANT: The string may contain letters, not just parentheses.",
|
"IMPORTANT: The string may contain letters, not just parentheses.",
|
||||||
`Examples:\n`,
|
`Examples:\n`,
|
||||||
`"()())()" -> [()()(), (())()]\n`,
|
`"()())()" -> ["()()()", "(())()"]\n`,
|
||||||
`"(a)())()" -> [(a)()(), (a())()]\n`,
|
`"(a)())()" -> ["(a)()()", "(a())()"]\n`,
|
||||||
`")(" -> [""]`,
|
`")(" -> [""]`,
|
||||||
].join(" ");
|
].join(" ");
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user