From ccf96aa31955af74ed3d67b84ddca686935f0a4e Mon Sep 17 00:00:00 2001 From: Anuj Naresh Chetwani <71286830+anuj672@users.noreply.github.com> Date: Tue, 16 May 2023 19:38:27 +0530 Subject: [PATCH] extra bracket (indentation typo) --- Leetcode Challenge/February/cpp/Clone Graph.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Leetcode Challenge/February/cpp/Clone Graph.cpp b/Leetcode Challenge/February/cpp/Clone Graph.cpp index 0e7ed4b..9c353ca 100644 --- a/Leetcode Challenge/February/cpp/Clone Graph.cpp +++ b/Leetcode Challenge/February/cpp/Clone Graph.cpp @@ -30,7 +30,6 @@ class Solution { { if(mp.find(it)!=mp.end()) neighbour.push_back(mp[it]); - } else neighbour.push_back(dfs(it,mp)); }