this post was submitted on 16 Jul 2023
1730 points (99.7% liked)

Memes

45662 readers
976 users here now

Rules:

  1. Be civil and nice.
  2. Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you have to.

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] outdated_belated@lemmy.sdf.org 13 points 1 year ago (1 children)

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@lemm.ee 2 points 1 year ago (1 children)

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

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