Nothing
getAlgorithmFilePath = function(file.dir, id) {
# fix for case-insensitive file names
id = gsub("([[:upper:]])", "@\\1", id)
file.path(file.dir, "algorithms", sprintf("%s.RData", id))
}
getProblemFilePaths = function(file.dir, id) {
# fix for case-insensitive file names
id = gsub("([[:upper:]])", "@\\1", id)
parts = c("static", "dynamic")
setNames(file.path(file.dir, "problems", sprintf("%s_%s.RData", id, parts)), parts)
}
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.