From 15d531621afa27e00a8061c0b3a732fd5393b710 Mon Sep 17 00:00:00 2001 From: Charles Cai Date: Tue, 6 Jul 2021 08:25:37 -0400 Subject: [PATCH] =?UTF-8?q?Update=20=E5=9B=9E=E6=BA=AF=E7=AE=97=E6=B3=95?= =?UTF-8?q?=E8=AF=A6=E8=A7=A3=E4=BF=AE=E8=AE=A2=E7=89=88.md=20(#653)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix a typo from the code. Co-authored-by: labuladong --- ...57\246\350\247\243\344\277\256\350\256\242\347\211\210.md" | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git "a/\347\256\227\346\263\225\346\200\235\347\273\264\347\263\273\345\210\227/\345\233\236\346\272\257\347\256\227\346\263\225\350\257\246\350\247\243\344\277\256\350\256\242\347\211\210.md" "b/\347\256\227\346\263\225\346\200\235\347\273\264\347\263\273\345\210\227/\345\233\236\346\272\257\347\256\227\346\263\225\350\257\246\350\247\243\344\277\256\350\256\242\347\211\210.md" index 319c04a..032a395 100644 --- "a/\347\256\227\346\263\225\346\200\235\347\273\264\347\263\273\345\210\227/\345\233\236\346\272\257\347\256\227\346\263\225\350\257\246\350\247\243\344\277\256\350\256\242\347\211\210.md" +++ "b/\347\256\227\346\263\225\346\200\235\347\273\264\347\263\273\345\210\227/\345\233\236\346\272\257\347\256\227\346\263\225\350\257\246\350\247\243\344\277\256\350\256\242\347\211\210.md" @@ -89,7 +89,7 @@ PS:**为了简单清晰起见,我们这次讨论的全排列问题不包含 ```java void traverse(TreeNode root) { - for (TreeNode child : root.childern) + for (TreeNode child : root.children) // 前序遍历需要的操作 traverse(child); // 后序遍历需要的操作 @@ -539,5 +539,3 @@ var solveNQueens = function (n) { }; ``` - - -- GitLab