카타 7급 Get the Middle Character

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

1 Kotlin[ | ]

2 R[ | ]

get_middle <- function(s){
  substr(s, (nchar(s)+1)%/%2, nchar(s)%/%2 + 1)
}
get_middle <- function(s){
  n = nchar(s)
  if( n %% 2 == 0 ) substr(s, n/2, n/2+1)
  else substr(s, (n+1)/2, (n+1)/2)
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}