Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0467e03

Browse files
2620 : README.md
1 parent 1ddf223 commit 0467e03

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

2620-Counter/README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff 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

@@ -31,7 +32,9 @@ n = -2
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

@@ -40,4 +43,4 @@ n = -2
4043
- `0 <= calls.length <= 1000`
4144
- `calls[i] === "call"`
4245

43-
---
46+
---

0 commit comments

Comments
 (0)