From 60b34a01d56d11d621e70f386cdfca3af5455c56 Mon Sep 17 00:00:00 2001 From: Carlos <110995013+crr004@users.noreply.github.com> Date: Wed, 19 Jul 2023 17:53:01 +0200 Subject: [PATCH] Line removed (#252) * Added #include to support the use of INT_MAX * Removed unnecesary (and maybe confusing) initialization of the set --- 08_greedy_algorithms/python/01_set_covering.py | 1 - 1 file changed, 1 deletion(-) diff --git a/08_greedy_algorithms/python/01_set_covering.py b/08_greedy_algorithms/python/01_set_covering.py index d2fa08a..10d919e 100644 --- a/08_greedy_algorithms/python/01_set_covering.py +++ b/08_greedy_algorithms/python/01_set_covering.py @@ -8,7 +8,6 @@ stations["kthree"] = set(["or", "nv", "ca"]) stations["kfour"] = set(["nv", "ut"]) stations["kfive"] = set(["ca", "az"]) -final_stations = set() def my_set_covering(states_needed, stations): final_stations = set()