mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-08 09:00:38 -04:00
@@ -51,7 +51,7 @@ assert(isValidSolution_(solve24(testCases_[0])));
|
||||
assert(isValidSolution_(solve24(testCases_[1])));
|
||||
```
|
||||
|
||||
`solve24("6789")` should return `(6*8)/(9-7)`. `(8*6)/(9-7)`, or a similar valid string
|
||||
`solve24("6789")` should return `(6*8)/(9-7)`, `(8*6)/(9-7)`, or a similar valid string
|
||||
|
||||
```js
|
||||
assert(isValidSolution_(solve24(testCases_[2])));
|
||||
|
||||
@@ -20,7 +20,7 @@ You should nest a new anchor (`a`) element within the `p` element.
|
||||
assert($('p > a').length);
|
||||
```
|
||||
|
||||
The link's href value should be `https://freecatphotoapp.com`. You have either omitted the href value or have a typo.
|
||||
The link's `href` value should be `https://freecatphotoapp.com`. You have either omitted the `href` value or have a typo.
|
||||
|
||||
```js
|
||||
const nestedAnchor = $('p > a')[0];
|
||||
|
||||
Reference in New Issue
Block a user