Read More239 views2 minute read LeetCode638. Shopping OffersByWayne16/08/2023 We can use backtracking to find all the purchase combinations, and then take the lowest price. Read More 0 0 0 0
Read More230 views2 minute read LeetCode39. Combination SumByWayne16/08/2023 This problem asks us to list all possible combinations, so we can use backtracking to find them. However, we must avoid finding duplicated combinations. Read More 0 0 0 0
Read More253 views1 minute read LeetCode22. Generate ParenthesesByWayne16/08/2023 This problem asks us to list all possible combinations of parentheses, so we can use backtracking to solve it. Read More 0 0 0 0
Read More237 views2 minute read LeetCode17. Letter Combinations of a Phone NumberByWayne16/08/2023 This problem asks us to list all possible strings, so we can think of using backtracking to solve it. Read More 0 0 0 0