Skip to content

Commit 12a17e9

Browse files
author
wangpeng
committed
docs: add _46_permute
1 parent f9a1d57 commit 12a17e9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![996.icu](https://img.shields.io/badge/link-996.icu-red.svg)](https://996.icu)
44

55
## 说明
6-
- leetcode练习,坚持每天一道,目前已完成162道
6+
- leetcode练习,坚持每天一道,目前已完成163道
77
- 解题语言是Java
88
- 每道题都是可编译运行的
99
- 每道题有自己的方法和他人优秀解法
@@ -17,7 +17,7 @@
1717

1818
- [x] [39. 组合总和 - Medium](https://leetcode-cn.com/problems/combination-sum/)
1919

20-
- [ ] [46. 全排列 - Medium](https://leetcode-cn.com/problems/permutations/)
20+
- [x] [46. 全排列 - Medium](https://leetcode-cn.com/problems/permutations/)
2121

2222
- [ ] [47. 全排列 II - Medium](https://leetcode-cn.com/problems/permutations-ii/)
2323

@@ -58,7 +58,7 @@
5858
- [线段树](https://leetcode-cn.com/tag/segment-tree/)(9)
5959
- [二叉搜索树](https://leetcode-cn.com/tag/binary-search-tree/)(15)
6060

61-
### 题目列表(更新中--已完成162
61+
### 题目列表(更新中--已完成163
6262

6363
| No | 题目 | 解决方案 | 相关话题 | 难度 | remark |
6464
| ----- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------ | ------------------------------------------------------------ |
@@ -106,6 +106,7 @@
106106
| #43 | [字符串相乘](https://leetcode-cn.com/problems/multiply-strings/) | [Multiply](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_43_multiply.java) | [数学](<https://leetcode-cn.com/tag/math/>)[字符串](<https://leetcode-cn.com/tag/string/>) | Medium | |
107107
| #44 | [通配符匹配](https://leetcode-cn.com/problems/wildcard-matching/) | [IsMatch](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_44_isMatch.java) | [贪心算法](https://leetcode-cn.com/tag/greedy/)[字符串](<https://leetcode-cn.com/tag/string/>)[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>)[回溯算法](<https://leetcode-cn.com/tag/backtracking/>) | Hard | |
108108
| #45 | [跳跃游戏 II](https://leetcode-cn.com/problems/jump-game-ii/) | [Jump](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_45_jump.java) | [贪心算法](https://leetcode-cn.com/tag/greedy/)[数组](<https://leetcode-cn.com/tag/array/>) | Hard | |
109+
| #46 | [全排列](https://leetcode-cn.com/problems/permutations/) | [Permute](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_46_permute.java) | [回溯算法](<https://leetcode-cn.com/tag/backtracking/>) | Medium | |
109110
| #49 | [字母异位词分组](https://leetcode-cn.com/problems/group-anagrams/) | [GroupAnagrams](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_49_groupAnagrams.java) | [哈希表](<https://leetcode-cn.com/tag/hash-table/>)[字符串](<https://leetcode-cn.com/tag/string/>) | Medium | |
110111
| #51 | [N皇后](https://leetcode-cn.com/problems/n-queens/) | [SolveNQueens](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_51_solveNQueens_2.java) | [回溯算法](<https://leetcode-cn.com/tag/backtracking/>) | Hard | [自己原始解法](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_51_solveNQueens.java) |
111112
| #53 | [最大子序和](https://leetcode-cn.com/problems/maximum-subarray/) | [MaxSubArray.java](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_53_maxSubArray.java) | [数组](<https://leetcode-cn.com/tag/array/>)[分治算法](<https://leetcode-cn.com/tag/divide-and-conquer/>)[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Easy | |

0 commit comments

Comments
 (0)