tribonacci-tuple-swap-correctness

Status: IN

The simultaneous tuple assignment `a, b, c = b, c, a+b+c` evaluates all RHS values before any assignment, ensuring correctness without temporary variables — a Python-specific idiom critical to the sliding-window recurrence.

Source: entries/2026/06/06/n-th-tribonacci-number-solution.md

JSON