Hi, I have "s" as an Iterable of String. I also have "arr" as an array of bytes. I want to set the 's' position of the array 'arr' to 1. In short, I want to do arr(s) = 1 // algorithmic notation
I tried the above but I am getting type mismatch error How should I do this? Thank You