So, if I want to store 5 zeros in a sequence, and access them later through their index numbers, what type of a sequence should I use in Scala?
In Python i would do something like this:
listTest = list(0,0,0,0,0)
listTest[1] = 3
print(listTest)
-> 0,3,0,0,0
I realize a similar question is likely already answered to. Might be that I just don't know the right keywords to find one.