climbing-stairs-no-input-validation

Status: IN

`climbStairs` does not guard against `n <= 0`; passing 0 returns 0, and negative values return the negative input — both incorrect but outside the LeetCode contract `1 <= n <= 45`.

Source: entries/2026/06/06/climbing-stairs-solution.md

JSON