fix(curriculum): Add periods at the end of hints (#45818)

This commit is contained in:
sidemt 2022-05-02 03:42:37 +09:00 committed by GitHub
parent e02c016484
commit 857e29258d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ assert(
);
```
The first `Set` should be contained in the second `Set`
The first `Set` should be contained in the second `Set`.
```js
assert(
@ -43,7 +43,7 @@ assert(
);
```
`['a', 'b'].isSubsetOf(['a', 'b', 'c', 'd'])` should return `true`
`['a', 'b'].isSubsetOf(['a', 'b', 'c', 'd'])` should return `true`.
```js
assert(
@ -62,7 +62,7 @@ assert(
);
```
`['a', 'b', 'c'].isSubsetOf(['a', 'b'])` should return `false`
`['a', 'b', 'c'].isSubsetOf(['a', 'b'])` should return `false`.
```js
assert(
@ -80,7 +80,7 @@ assert(
);
```
`[].isSubsetOf([])` should return `true`
`[].isSubsetOf([])` should return `true`.
```js
assert(
@ -93,7 +93,7 @@ assert(
);
```
`['a', 'b'].isSubsetOf(['c', 'd'])` should return `false`
`['a', 'b'].isSubsetOf(['c', 'd'])` should return `false`.
```js
assert(