Skip to content

Commit 83cb69d

Browse files
committed
fix lint
1 parent 8ee0c61 commit 83cb69d

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

โ€Žreverse-bits/jinvicky.javaโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ public int reverseBits(int n) {
1515
}
1616
return reversed;
1717
}
18-
}
18+
}

โ€Žsum-of-two-integers/jinvicky.javaโ€Ž

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
class Solution {
22
public int getSum(int a, int b) {
3-
43
while (b != 0) {
54

65
// ๋ณ€์ˆ˜ 2๊ฐœ์™€ ๋น„ํŠธ ์—ฐ์‚ฐ
@@ -15,7 +14,6 @@ public int getSum(int a, int b) {
1514
b = carry; // ํ•œ๋ฒˆํ•˜๊ณ  ๋ง๋ฉด b๋Š” ์“ฐ์ผ ์ผ์ด ์—†๋Š”๋ฐ? -> ๋น ๋œจ๋ฆฐ ๋ฐ˜๋ณต๋ฌธ์ด ์—†๋Š”์ง€ ํ™•์ธํ•œ๋‹ค.
1615

1716
}
18-
1917
return a;
2018
}
2119
}

0 commit comments

Comments
ย (0)