Skip to content

Commit 12e92cb

Browse files
authored
Update 338-counting-bits.md
1 parent 4ada132 commit 12e92cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dsa-solutions/lc-solutions/0300-0399/338-counting-bits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ sidebar_position: 5
1515

1616
## Problem Description
1717

18-
Given an integer `n`, return an array `ans` of length `n + 1` such that for each `i` (0 <= `i` <= `n`), `ans[i]` is the number of `1`s in the binary representation of `i`.
18+
Given an integer `n`, return an array `ans` of length `n + 1` such that for each `i` (0 &lt;= `i` &lt;= `n`), `ans[i]` is the number of `1`s in the binary representation of `i`.
1919

2020
### Examples
2121

@@ -182,4 +182,4 @@ class Solution:
182182
{['ImmidiSivani'].map(username => (
183183
<Author key={username} username={username} />
184184
))}
185-
</div>
185+
</div>

0 commit comments

Comments
 (0)