Integer values are between the maximum and minimum heights

If applicable, please review FAQ: Homework Policy.

round(1.11,0)

rounds down to the integer.

my_vector <- seq(min,max,by = 1) # curses, autocorrect!

gives a vector of the values, including min and max

my_vector [2:endpoint]

To solve: what function returns the position of the last value in my_vector?

What would you change in the second part?