Hi guys
For the last two days I've been trying to write a sub that'll remove all zeros from a given range. The range could look like this:
A
1: 0
2: 2
3: 0
4: 7
5: 0
I have written the following piece of code to remove the zeros and re-print the range without the zeros somewhere else in...