Nothing
#' Generate a symmetric L set satisfying the condition (first n numbers and their complements)
#'
#' @param n Parameter, final order 4n
#'
#' @return Integer vector of length 2n
#' @export
generate_symmetric_L <- function(n) {
first <- 1:n
last <- 4 * n - (1:n) + 1
c(first, last)
}
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.