Skip to content

Commit

Permalink
docs: fix simple typo, recusion -> recursion
Browse files Browse the repository at this point in the history
There is a small typo in docs/leetcode/python/326._power_of_three.md.

Should read `recursion` rather than `recusion`.
  • Loading branch information
timgates42 committed Dec 22, 2020
1 parent 51aca5e commit 6f33102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/leetcode/python/326._power_of_three.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Solution(object):

```

有一个follow up,可否不用 loop/recusion
有一个follow up,可否不用 loop/recursion

看到了取巧的办法,因为是Given an integer,是有范围的(<2147483648),存在能输入的最大的3的幂次,即 3^19=1162261467。

Expand Down

0 comments on commit 6f33102

Please sign in to comment.