multiplication-before-division-ordering

Status: IN

In `percentageLetter`, the `count * 100` multiplication happens before the `// len(s)` division — reversing the order would produce 0 for any `count < len(s)` due to integer floor division.

Source: entries/2026/06/06/percentage-of-letter-in-string-solution.md

JSON