Skip to content

Commit 4df660c

Browse files
committed
Fixed style
1 parent 90d3ca8 commit 4df660c

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/g3001_3100/s3067_count_pairs_of_connectable_servers_in_a_weighted_tree_network

1 file changed

+1
-1
lines changed

src/main/java/g3001_3100/s3067_count_pairs_of_connectable_servers_in_a_weighted_tree_network/Solution.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public int[] countPairsOfConnectableServers(int[][] edges, int signalSpeed) {
4242
return res;
4343
}
4444

45-
void dfs(int node, int par, int sum, int cnt[], int ss) {
45+
void dfs(int node, int par, int sum, int[] cnt, int ss) {
4646
if (sum % ss == 0) {
4747
cnt[0]++;
4848
}

0 commit comments

Comments
 (0)