카타 8급 Expand a string

R[ | ]

expand <- function(s){
  strsplit(s,"")[[1]]
}
expand <- function(s){
  unlist(strsplit(s,""))
}
expand <- function(s){
  unlist(strsplit(s,NULL))
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}