Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 이진수 변환
- 자바
- 큐
- StringTokenizer
- Programmers
- Queue
- COS Pro
- 스프링부트 도커
- 알고리즘
- lv2
- index of
- 버퍼
- lv0
- SWEA
- 백준 N과 M 자바
- Lv1
- java
- 프로그래머스 자바
- 프로그래머스
- 삼각형의 완성조건
- 클라이언트
- 스프링부트 도커 배포
- Stack
- 스프링부트 도커로 배포
- 프로그래머스 풀이
- 오름차순 정렬
- 백준
- 프로그래머스 문자열 정렬
- 스택
- 문자열
Archives
- Today
- Total
mun dev
[COS PRO 1급] 2-9 비밀번호 검사 자바(Java) 본문
문제링크
문제유형
solution 함수 수정하기
문제
class Main {
public boolean solution(String password) {
int length = password.length();
for(int i = 0; i < length - 2; ++i){
int firstCheck = password.charAt(i + 1) - password.charAt(i);
int secondCheck = password.charAt(i) - password.charAt(i+1);
if(firstCheck == secondCheck && (firstCheck == 1 || firstCheck == -1))
return false;
}
return true;
}
문제 풀이
class Main {
public boolean solution(String password) {
int length = password.length();
for(int i = 0; i < length - 2; ++i){
int firstCheck = password.charAt(i + 1) - password.charAt(i);
int secondCheck = password.charAt(i) - password.charAt(i+1);
if(firstCheck < secondCheck && (firstCheck == 1 || firstCheck == -1))
return false;
}
return true;
}
// 아래는 테스트케이스 출력을 해보기 위한 main 메소드입니다. main 메소드는 잘못된 부분이 없으니, solution 메소드만 수정하세요.
public static void main(String[] args) {
Main sol = new Main();
String password1 = "cospro890";
boolean ret1 = sol.solution(password1);
// [실행] 버튼을 누르면 출력 값을 볼 수 있습니다.
System.out.println("solution 메소드의 반환 값은 " + ret1 + " 입니다.");
String password2 = "cba323";
boolean ret2 = sol.solution(password2);
// [실행] 버튼을 누르면 출력 값을 볼 수 있습니다.
System.out.println("solution 메소드의 반환 값은 " + ret2+ " 입니다.");
}
}
'알고리즘 > COS PRO 1급' 카테고리의 다른 글
[COS PRO 1급] 3-1 배열을 회전시켜보세요 자바(Java) (0) | 2023.11.28 |
---|---|
[COS PRO 1급] 2-10 0들을 0으로 만들기 자바(Java) (0) | 2023.11.27 |
[COS PRO 1급] 2-8 규칙에 맞는 배열 구하기 자바(Java) (0) | 2023.11.27 |
[COS PRO 1급] 2-7 거스름돈 구하기 자바(Java) (0) | 2023.11.27 |
[COS PRO 1급] 2-6 로봇을 움직여주세요 자바(Java) (0) | 2023.11.27 |