fix: Added comments on the function for clarity on coding-interview-prep (#42689)

This commit is contained in:
tristansoriaga
2021-07-02 20:45:58 +08:00
committed by GitHub
parent 5f9d507d70
commit 4be8a6f224

View File

@ -48,7 +48,10 @@ assert(
```js
function checkSet(){
// Only change code below this line
var set = null;
// Only change code above this line
return set;
}
```