I am having trouble understanding how to write a function in R for use with vectors. For the question:
Write an R function to determine if two sets, A and B, represented as integer vectors are disjoint. If they are disjoint, display elements of set A otherwise display elements of set B.
I understand the basic format for function and conditional statements, for example:
name <- function(x){
if (x>3) print("x is greater than 3")
else print ("x not greater than 3")
}
however, for the above question, I don't know how to go about doing something similar, but with vectors as the arguments. Any answers??

AorBis not relevant, so they really don't qualify as vectors) – Carl Witthoft May 2 '12 at 12:28