I'm doing a presentation and I have to include this in it:
for j in 1..j_max
b_offset = copy(b)
b_offset[j] = b_offset[j] + 1
I can't do b_offset = b + 1, but I don't know how else to describe that just the jth index should increase by one.