일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 프로그래머스
- modern c++
- spring boot
- spotify
- c
- SECS
- Computer Science
- 회귀
- Spring JPA
- 회원가입
- java
- C++
- python
- 파이썬
- MYSQL
- programmers
- linux
- 백준
- 자바
- SW Expert Academy
- CS
- Spotify Api
- regression
- SWEA
- Baekjoon
- SECS-II
- 스포티파이
- SECS/GEM
- Spring
- Gem
Archives
- Today
- Total
비버놀로지
[Programmers 프로그래머스] 12903 가운데 글자 가져오기 본문
728x90
programmers.co.kr/learn/courses/30/lessons/12903
스트링함수를 이용해서 입력이 되는 글자의 길이값을 저장해 주고, 그 값이 짝수일 경우와 홀수일 경우를 나눠서 답을 찾는다.
그렇게 중간값을 찾고, 입력값을 배열로 만들어 중간값을 꺼내오는 방식으로 작성했다.
class Solution {
public String solution(String s) {
String answer="";
int size=s.length();
int temp=size/2;
String splits[]=s.split("");
if(size%2==1) {
return answer=splits[temp];
}else {
return answer.concat(splits[temp-1]).concat(splits[temp]);
}
}
}
728x90
'ALGORITM > JAVA' 카테고리의 다른 글
[Programmers 프로그래머스] 12910 나누어 떨어지는 숫자 배열 (0) | 2021.01.07 |
---|---|
[Programmers 프로그래머스] 12906 같은 숫자는 싫어 (0) | 2021.01.07 |
[Programmers 프로그래머스] 68935 3진법 뒤집기 (0) | 2021.01.07 |
[Programmers 프로그래머스] 12901 2016년 (0) | 2021.01.07 |
[Programmers 프로그래머스] 42748 K번째수 (0) | 2021.01.07 |
Comments