Status: IN
Digits in convert_to_base7 are accumulated least-significant-first via repeated `% 7` and `//= 7`, then reversed at the end — the standard accumulate-then-reverse idiom that avoids O(n) prepend costs.
Source: entries/2026/06/06/base-7-solution.md
JSON