From 7552b74d9a800f68471f66370ea47fcb9a4fa58e Mon Sep 17 00:00:00 2001 From: Gabriel <38080169+Gabriel-18@users.noreply.github.com> Date: Tue, 23 Feb 2021 16:47:37 +0800 Subject: [PATCH] =?UTF-8?q?547.=20Friend=20Circles=20=E6=94=B9=E5=90=8D?= =?UTF-8?q?=E4=B8=BA547.=20Number=20of=20Provinces?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 官方改了题目名字和链接 --- notes/Leetcode 题解 - 搜索.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notes/Leetcode 题解 - 搜索.md b/notes/Leetcode 题解 - 搜索.md index 83d1c85e..9b3d68f3 100644 --- a/notes/Leetcode 题解 - 搜索.md +++ b/notes/Leetcode 题解 - 搜索.md @@ -390,11 +390,11 @@ private void dfs(char[][] grid, int i, int j) { } ``` -### 3. 好友关系的连通分量数目 +### 3. 省份关系的连通分量数目 547\. Friend Circles (Medium) -[Leetcode](https://leetcode.com/problems/friend-circles/description/) / [力扣](https://leetcode-cn.com/problems/friend-circles/description/) +[Leetcode](https://leetcode.com/problems/number-of-provinces/description/) / [力扣](https://leetcode-cn.com/problems/number-of-provinces/description/) ```html Input: