Exercise: Backtracking Problems on LeetCode I labuladong Original About 12829 words
967. 连续差相同的数字 https://leetcode.cn/problems/numbers-with-same-consecutive-differences 967. Numbers With Same Consecutive Differences https://leetcode.com/problems/numbers-with-same-consecutive-differences 980. 不同路径 III https://leetcode.cn/problems/unique-paths-iii 980. Unique Paths III https://leetcode.com/problems/unique-paths-iii 526. 优美的排列 https://leetcode.cn/problems/beautiful-arrangement 526. Beautiful Arrangement https://leetcode.com/problems/beautiful-arrangement 491. 递增子序列 https://leetcode.cn/problems/non-decreasing-subsequences 491. Increasing Subsequences https://leetcode.com/problems/non-decreasing-subsequences 131. 分割回文串 https://leetcode.cn/problems/palindrome-partitioning 131. Palindrome Partitioning https://leetcode.com/problems/palindrome-partitioning 93. 复原 IP 地址 https://leetcode.cn/problems/restore-ip-addresses 93. Restore IP Addresses https://leetcode.com/problems/restore-ip-addresses 89. 格雷编码 https://leetcode.cn/problems/gray-code 89. Gray Code https://leetcode.com/problems/gray-code 17. 电话号码的字母组合 https://leetcode.cn/problems/letter-combinations-of-a-phone-number 17. Letter Combinations of a Phone Number https://leetcode.com/problems/letter-combinations-of-a-phone-number 79. 单词搜索 https://leetcode.cn/problems/word-search 79. Word Search https://leetcode.com/problems/word-search 473. 火柴拼正方形 https://leetcode.cn/problems/matchsticks-to-square 473. Matchsticks to Square https://leetcode.com/problems/matchsticks-to-square Prerequisites
Before tackling the backtracking algorithm exercises in this chapter, you must be familiar with the thinking methods explained in the following articles:
Prev
Backtracking Algorithm Practice: Partitioning k Subsets
Next
Exercise: Backtracking Problems on LeetCode II