Skip to content

Commit 17ed8f2

Browse files
committed
Fixed tag
1 parent 17dbb1e commit 17ed8f2

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/g3401_3500/s3459_length_of_longest_v_shaped_diagonal_segment

1 file changed

+1
-1
lines changed

src/main/java/g3401_3500/s3459_length_of_longest_v_shaped_diagonal_segment/Solution.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package g3401_3500.s3459_length_of_longest_v_shaped_diagonal_segment;
22

33
// #Hard #Array #Dynamic_Programming #Matrix #Memoization
4-
// #2025_02_21_Time_51_ms_(77.23%)_Space_75.55_MB_(90.55%)
4+
// #2025_02_21_Time_56_ms_(72.97%)_Space_75.44_MB_(91.21%)
55

66
public class Solution {
77
private final int[][] directions = {{-1, -1}, {-1, 1}, {1, 1}, {1, -1}};

0 commit comments

Comments
 (0)