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)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.