Fixed GH Issue #641

This commit is contained in:
danielyxie
2019-07-01 20:39:12 -07:00
committed by danielyxie
parent b82d7c12af
commit b2772bbfc1
3 changed files with 6 additions and 13 deletions

View File

@@ -841,6 +841,8 @@ export const codingContractTypesMetadata: ICodingContractTypeMetadata[] = [
"The data provided by this problem is an array with two elements. The first element",
"is the string of digits, while the second element is the target number:\n\n",
`["${digits}", ${target}]\n\n`,
"NOTE: Numbers in the expression cannot have leading 0's. In other words,",
`"1+01" is not a valid expression`,
"Examples:\n\n",
`Input: digits = "123", target = 6\n`,
`Output: ["1+2+3", "1*2*3"]\n\n`,