• @[email protected]
    link
    fedilink
    131 year ago

    Nah, look at the implementation above:

    n <= 4

    Means it’s inclusive.

    You’re probably referring to some other implementation that doesn’t involve such fine control, like Python where range(4) means [0 1 2 3]

    • radix
      link
      fedilink
      21 year ago

      Oh yeah, I meant generally. Isn’t it most common if not best practice to say for (i = 0; i < whatever; i++)?

      • @[email protected]
        link
        fedilink
        21 year ago

        Fair. I guess to accommodate zero-indexing so that it still happens whatever times, not whatever + 1 times.