Nothing
initialize_findA <- function (depth, size) {
findA <- new.env()
findA$values <- list()
findA$values[[1]] <- rep(-Inf, size)
for (i in 2:depth) {
findA$values[[i]] <- rep(-Inf, size)
}
return (findA)
}
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.