일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Gem
- 자바
- SECS
- modern c++
- 백준
- 회원가입
- 스포티파이
- spring boot
- 파이썬
- Spring JPA
- programmers
- linux
- MYSQL
- SWEA
- Computer Science
- java
- spotify
- Baekjoon
- Spring
- 프로그래머스
- Spotify Api
- python
- CS
- 회귀
- SW Expert Academy
- regression
- SECS/GEM
- c
- C++
- SECS-II
Archives
- Today
- Total
비버놀로지
[Programmers 프로그래머스] 12918 문자열 다루기 기본 본문
728x90
programmers.co.kr/learn/courses/30/lessons/12918
입력값을 Character로 바꾸어 주어 내부에 foreach를 통해 모든 값을 확인해 보다가 숫자가 아닌 값이 있다면 false를 출력할 수 있도록 제작했다.
class Solution {
public boolean solution(String s) {
boolean answer = true;
char []temp=s.toCharArray();
if(temp.length==4||temp.length==6) {
for (char c : temp) {
if(c<'0'||c>'9') {
answer=false;
break;
}
}
}else {
answer=false;
}
return answer;
}
}
728x90
'ALGORITM > JAVA' 카테고리의 다른 글
[Programmers 프로그래머스] 12921 소수 찾기 (0) | 2021.01.07 |
---|---|
[Programmers 프로그래머스] 12919 서울에서 김서방 찾기 (0) | 2021.01.07 |
[Programmers 프로그래머스] 12917 문자열 내림차순으로 배치하기 (0) | 2021.01.07 |
[Programmers 프로그래머스] 12916 문자열 내 p와 y의 개수 (0) | 2021.01.07 |
[Programmers 프로그래머스] 12915 문자열 내 마음대로 정렬하기 (0) | 2021.01.07 |
Comments