write a function called my ifelse() that implements a vector form of the if-else statement without the ifelse() function. that is, the ith element of my ifelse(test, yes, no) will be yes[i] if test[i] is true and no[i] if test[i] is false. values of yes or no should be recycled if either is shorter than test.