fork download
  1. lotto <- function(names, output) {
  2. lottos <- matrix(nrow = length(names), ncol = output + 1)
  3. lottos[,1] <- t(sample(names, length(names)))
  4. options <- matrix(unlist(combn(names, output)), ncol = 3, byrow = T)
  5. times <- sample(1:nrow(options), length(names))
  6. lottos[,-1] <- options[times,]
  7. return(lottos)
  8. }
  9.  
  10. challenge <- "Rebbeca Gann;Latosha Caraveo;Jim Bench;Carmelina Biles;Oda Wilhite;Arletha Eason ;Theresa Kaczorowski;Jane Cover;Melissa Wise;Jaime Plascencia;Sacha Pontes;Tarah Mccubbin;Pei Rall;Dixie Rosenblatt;Rosana Tavera;Ethyl Kingsley;Lesia Westray;Vina Goodpasture;Drema Radke;Grace Merritt;Lashay Mendenhall;Magali Samms;Tiffaney Thiry;Rikki Buckelew;Iris Tait;Janette Huskins;Donovan Tabor;Jeremy Montilla;Sena Sapien;Jennell Stiefel"
  11. input <- read.table(textConnection(challenge), sep = ";", colClasses = "character")
  12.  
  13. output <- lotto(input, 15)
  14. output <- cbind(output[,1], rep(">", nrow(output)), output[,-1])
  15.  
  16. apply(output, 1, cat, "\n")
Success #stdin #stdout #stderr 0.2s 241984KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error: cannot allocate vector of size 17.3 Gb
Execution halted