Question: Analyse the worst-case complexity of your filter_candidates implementation. Explain whether your run-times support your analysis. filter_candidates = [] for candidate in candidates: if colours(guess, candidate)
Analyse the worst-case complexity of your filter_candidates implementation. Explain whether your run-times support your analysis.
filter_candidates = [] for candidate in candidates: if colours(guess, candidate) == col and positions(guess, candidate) == pos: filter_candidates.append(candidate) filter_candidates.sort() return filter_candidates
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
