File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,11 @@ n = 10
1616// Output: [10,11,12]
1717```
1818
19- ** Explanation:** <br >
20- counter() = 10 // The first time counter() is called, it returns n. <br >
21- counter() = 11 // Returns 1 more than the previous time. <br >
22- counter() = 12 // Returns 1 more than the previous time.
19+ ** Explanation:**
20+
21+ counter() = 10 // The first time counter() is called, it returns n.
22+ counter() = 11 // Returns 1 more than the previous time.
23+ counter() = 12 // Returns 1 more than the previous time.
2324
2425---
2526
3132// Output: [-2,-1,0,1,2]
3233```
3334
34- ** Explanation:** <br > counter() initially returns -2. Then increases after each sebsequent call.
35+ ** Explanation:**
36+
37+ counter() initially returns -2. Then increases after each sebsequent call.
3538
3639---
3740
4043- ` 0 <= calls.length <= 1000 `
4144- ` calls[i] === "call" `
4245
43- ---
46+ ---
You can’t perform that action at this time.
0 commit comments