Nothing
delItem <- function(Item, Vec){
#delItem <- function(Item, Vec), output: Vec
#deleting an item (Item) from a vector (Vec) sorted in the ascending order
LVec <- length(Vec)
OutList <- findItem(Item, Vec, LVec); Pos <- OutList[[1]]
Vec <- Vec[-Pos]
return(Vec)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.