From 1d19ac72300e6de7c785b4eb5f64f8eea3d5e4b6 Mon Sep 17 00:00:00 2001 From: Zeeland Date: Mon, 16 Jan 2023 10:48:43 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E9=94=99=E5=88=AB?= =?UTF-8?q?=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- problems/0349.两个数组的交集.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problems/0349.两个数组的交集.md b/problems/0349.两个数组的交集.md index 2e98ef6f..f8f41097 100644 --- a/problems/0349.两个数组的交集.md +++ b/problems/0349.两个数组的交集.md @@ -137,7 +137,7 @@ class Solution { resSet.add(i); } } - //将结果几何转为数组 + //将结果集合转为数组 return resSet.stream().mapToInt(x -> x).toArray(); } }