From ebf87c93bdf91429de1fca9fcf999e3ed24eb0a0 Mon Sep 17 00:00:00 2001 From: xll <18574553598@163.com> Date: Wed, 26 May 2021 21:07:11 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=8C=E5=8F=89=E6=A0=91=E7=9A=84=E6=89=80?= =?UTF-8?q?=E6=9C=89=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- problems/0257.二叉树的所有路径.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/problems/0257.二叉树的所有路径.md b/problems/0257.二叉树的所有路径.md index fa9991de..fe7a2604 100644 --- a/problems/0257.二叉树的所有路径.md +++ b/problems/0257.二叉树的所有路径.md @@ -352,7 +352,7 @@ class Solution: Go: JavaScript: -递归版本 +1.递归版本 ```javascript var binaryTreePaths = function(root) { //递归遍历+递归三部曲