greedy_algorithm (220B)
1 # Greedy algorithm 2 3 Algorithm where you can build an optimal solution step by step by making choices in a specific order, without having to do [backtracking] 4 5 See also: [matroid] 6 7 Up: [algorithm_type] 8 9 Aliases: greedily