Skip to content

Commit ad592cb

Browse files
committed
Fixed format
1 parent cf98718 commit ad592cb

File tree

5 files changed

+6
-1
lines changed

5 files changed

+6
-1
lines changed

src/main/java/com_github_leetcode/Employee.java

+2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@
66
public class Employee {
77
/** It's the unique id of each node; unique id of this employee */
88
public int id;
9+
910
/** the importance value of this employee */
1011
public int importance;
12+
1113
/** the id of direct subordinates */
1214
public List<Integer> subordinates;
1315

src/main/java/g0201_0300/s0232_implement_queue_using_stacks/MyQueue.java

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
public class MyQueue {
1111
private Deque<Integer> left;
1212
private Deque<Integer> right;
13+
1314
// Initialize your data structure here.
1415
public MyQueue() {
1516
left = new ArrayDeque<>();

src/main/java/g0301_0400/s0315_count_of_smaller_numbers_after_self/Solution.java

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ public void update(int i, int v) {
4040
bit[i] += v;
4141
}
4242
}
43+
4344
// prefix sum query
4445
private int ps(int j) {
4546
int ps = 0;

src/main/java/g1301_1400/s1391_check_if_there_is_a_valid_path_in_a_grid/Solution.java

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public class Solution {
1515
{{0, -1}, {-1, 0}},
1616
{{0, 1}, {-1, 0}}
1717
};
18+
1819
// the idea is you need to check port direction match, you can go to next cell and check whether
1920
// you can come back.
2021
public boolean hasValidPath(int[][] grid) {

src/main/java/g2301_2400/s2397_maximum_rows_covered_by_columns/Solution.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public class Solution {
77
private int ans = 0;
88

99
public int maximumRows(int[][] matrix, int numSelect) {
10-
dfs(matrix, /*colIndex=*/ 0, numSelect, /*mask=*/ 0);
10+
dfs(matrix, /* colIndex= */ 0, numSelect, /* mask= */ 0);
1111
return ans;
1212
}
1313

0 commit comments

Comments
 (0)