Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c84e91e

Browse files
fireairforceazl397985856
authored andcommitted
fix:修复547题变量名返回错误bug (azl397985856#231)
* fix:修复547题代码变量返回错误的bug * fix:修复547变量名错误
1 parent 20ffddf commit c84e91e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

problems/547.friend-circles-en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ class FindCirclesDFS {
121121
numCircles++;
122122
}
123123
}
124-
return countCircle;
124+
return numCircles;
125125
}
126126

127127
private void dfs(int[][] M, int i, boolean[] visited, int n) {

0 commit comments

Comments
 (0)