We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51276ff commit e6d6b0eCopy full SHA for e6d6b0e
leetcode/206/memo.md
@@ -185,4 +185,12 @@ def factorial(n: int, accumulated: int = 1) -> int:
185
186
## Feedback
187
188
-TODO: Add feedback from reviewers here
+- **再帰 <-> ループ間変形**
189
+ - 末尾再帰
190
+- 変数の末尾にコメントを書くとフォーマットが大変なので、素直にdocstringに書いた方がいいかも
191
+- 意味ではなく操作の順番からの命名 (previous) に気を付ける、パズルを作らないように
192
+- 四行くらいしかないなら空行を入れても読みやすさは変わらないかも
193
+ - どうせ空行を入れるなら、コメントを積極的に入れてもいいかも
194
+- `reversing`, `appending`という命名
195
+- PEP8の (sparingly) というニュアンスに気づかなかった "Extra blank lines may be used (sparingly) to separate groups of related functions."
196
+- `rest*`, `*_tails`
0 commit comments