카타 8급 Expand a string

Jmnote bot (토론 | 기여)님의 2021년 7월 31일 (토) 11:09 판 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

R[ | ]

R
Copy
expand <- function(s){
  strsplit(s,"")[[1]]
}
R
Copy
expand <- function(s){
  unlist(strsplit(s,""))
}
R
Copy
expand <- function(s){
  unlist(strsplit(s,NULL))
}