Nothing
bisect_reduce <- function(x, fun) {
n <- length(x)
if (n == 1) {
return(x[[1]])
}
mid <- floor(n / 2)
incl <- seq_len(mid)
left <- bisect_reduce(x[incl], fun)
right <- bisect_reduce(x[-incl], fun)
fun(left, right)
}
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.