Skip to content

Commit ea7dfb9

Browse files
committed
fix: lint
1 parent 426e1ee commit ea7dfb9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

3sum/soobing3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ function threeSum(nums: number[]): number[][] {
2424
}
2525
}
2626
return result;
27-
};
27+
};

climbing-stairs/soobing3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ function climbStairs(n: number): number {
1111
}
1212

1313
return dp(n);
14-
};
14+
};

product-of-array-except-self/soobing3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ function productExceptSelf(nums: number[]): number[] {
1717
}
1818

1919
return result;
20-
};
20+
};

valid-anagram/soobing3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ function isAnagram(s: string, t: string): boolean {
1717
if(sValue !== tMap.get(sKey)) return false;
1818
}
1919
return true
20-
};
20+
};

validate-binary-search-tree/soobing3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ function isValidBST(root: TreeNode | null): boolean {
2121
return validate(node.left, min, node.val) && validate(node.right, node.val, max)
2222
}
2323
return validate(root, -Infinity, Infinity);
24-
};
24+
};

0 commit comments

Comments
 (0)