Skip to content

Commit 8370d82

Browse files
authored
Resolved Sonar warnings
1 parent 7075b0d commit 8370d82

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/js/com_github_leetcode/treenode.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
class TreeNode {
1+
class TreeNode { // NOSONAR
22
constructor(val = 0, left = null, right = null) {
33
this.val = val
44
this.left = left

src/main/js/g0001_0100/s0075_sort_colors/solution.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ var sortColors = function(nums) {
1111
let ones = 0
1212

1313
// Count 0s and place them at the start
14-
for (let i = 0; i < nums.length; i++) {
15-
if (nums[i] === 0) {
14+
for (let num of nums) {
15+
if (num === 0) {
1616
nums[zeroes++] = 0
17-
} else if (nums[i] === 1) {
17+
} else if (num === 1) {
1818
ones++
1919
}
2020
}

0 commit comments

Comments
 (0)