Skip to content

Commit 7ae9ab0

Browse files
committed
dev
1 parent 3b86d01 commit 7ae9ab0

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/main/java/org/gd/leetcode/p0053/Solution.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
})
2626
class Solution {
2727

28-
@SuppressWarnings("DuplicatedCode")
2928
public int maxSubArray(int[] nums) {
3029
if (nums == null || nums.length == 0)
3130
return 0;

src/main/java/org/gd/leetcode/p0084/Solution.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44

55
/**
66
* https://leetcode.com/problems/largest-rectangle-in-histogram/
7+
*
8+
* @see org.gd.leetcode.p0053.Solution
79
*/
10+
@SuppressWarnings("JavadocReference")
811
@LeetCode(
912
name = "Largest Rectangle in Histogram",
1013
difficulty = LeetCode.Level.HARD,

0 commit comments

Comments
 (0)