Skip to content

Commit

Permalink
Typo: add line break
Browse files Browse the repository at this point in the history
  • Loading branch information
HC-kang committed Aug 22, 2024
1 parent c3795ad commit 3f79dd8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ function buildTree(preorder: number[], inorder: number[]): TreeNode | null {
}

return helper(0, preorder.length - 1, 0, inorder.length - 1);
}
}
2 changes: 1 addition & 1 deletion decode-ways/HC-kang.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ function numDecodings(s: string): number {
}

return dfs(0);
}
}

0 comments on commit 3f79dd8

Please sign in to comment.