From 177581a9a4d4679824fb81abfc692b3f44f29097 Mon Sep 17 00:00:00 2001 From: "Christine P. Chai" Date: Sat, 7 Dec 2024 05:27:24 -0800 Subject: [PATCH] Removed a comment with Chinese characters (#283) Removed a comment with Chinese characters --- 10_greedy_algorithms/python/01_set_covering.py | 1 - 1 file changed, 1 deletion(-) diff --git a/10_greedy_algorithms/python/01_set_covering.py b/10_greedy_algorithms/python/01_set_covering.py index 10d919e..6e2f9f7 100644 --- a/10_greedy_algorithms/python/01_set_covering.py +++ b/10_greedy_algorithms/python/01_set_covering.py @@ -11,7 +11,6 @@ stations["kfive"] = set(["ca", "az"]) def my_set_covering(states_needed, stations): final_stations = set() - #while states_needed is not None: 这个不对,Set()而不是None while states_needed: best_station = None states_covered = set()