shaymperry5514 shaymperry5514 22-04-2024 Computers and Technology Answered If I had defined the following vector, how could I create a slice of it that contained elements 1 through 3? 1) let sv = v[1..]; 2) let sv = v[0..2]; 3) let sv = v; 4) let sv = v[1..];