wrap-case-output-is-sorted

Status: IN

In the most-visited-sector solution, the wrap-around case (`start > end`) concatenates `range(1, end+1)` before `range(start, n+1)`, producing ascending order because `end < start` is a precondition of that branch.

Source: entries/2026/06/06/most-visited-sector-in-a-circular-track-solution.md

JSON