(→R) |
Jmnote bot (토론 | 기여) 잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight )) |
||
1번째 줄: | 1번째 줄: | ||
==R== | ==R== | ||
{{카타|8급|R|2}} | {{카타|8급|R|2}} | ||
< | <syntaxhighlight lang='r'> | ||
expand <- function(s){ | expand <- function(s){ | ||
strsplit(s,"")[[1]] | strsplit(s,"")[[1]] | ||
} | } | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang='r'> | ||
expand <- function(s){ | expand <- function(s){ | ||
unlist(strsplit(s,"")) | unlist(strsplit(s,"")) | ||
} | } | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang='r'> | ||
expand <- function(s){ | expand <- function(s){ | ||
unlist(strsplit(s,NULL)) | unlist(strsplit(s,NULL)) | ||
} | } | ||
</ | </syntaxhighlight> |
2021년 7월 31일 (토) 11:09 기준 최신판
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.