Skip to content

Commit

Permalink
style: 코드 블럭 언어 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Invidam committed May 25, 2024
1 parent 7265665 commit 2da6d2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion number-of-1-bits/invidam.go.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<!-- Add your space complexity here, e.g. $$O(n)$$ -->
: 별도 자료구조를 사용하지 않는다.
# Code
```
```go
func hammingWeight(n int) int {
cnt := 0
for mask := 1; mask <= n; mask = mask << 1 {
Expand Down

0 comments on commit 2da6d2a

Please sign in to comment.