Backtracking

    [LeetCode - Didi labs 기출문제] 265. Paint House II

    265. Paint House II Hard There are a row of n houses, each house can be painted with one of the k colors. The cost of painting each house with a certain color is different. You have to paint all the houses such that no two adjacent houses have the same color. The cost of painting each house with a certain color is represented by an n x k cost matrix costs. For example, costs[0][0] is the cost of..

    [LeetCode - DiDi Labs 기출 문제] 17. Letter Combinations of a Phone Number

    [LeetCode - DiDi Labs 기출 문제] 17. Letter Combinations of a Phone Number

    17. Letter Combinations of a Phone Number Medium Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. Return the answer in any order. A mapping of digits to letters (just like on the telephone buttons) is given below. Note that 1 does not map to any letters. Example 1: Input: digits = "23" Output: ["ad","ae","af","bd","be",..