Code Review
The Rule
Never say "looks good" without checking every item below. A proper review catches bugs before users do.
Review Checklist
1. Logic Correctness
- Does the code do what it claims to do?
- Are edge cases handled? (empty input, null, zero, negative, max values)
- Are boundary conditions correct? (off-by-one, inclusive/exclusive)
- Is the control flow correct? (early returns, loop termination, fallthrough)
- Are all code paths reachable? (no dea
[Description truncada. Veja o README completo no GitHub.]