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 |
Tags
- 자바
- two pointers
- Counting
- 코딩테스트
- Number Theory
- java
- dynamic programming
- Binary Tree
- Stack
- Math
- Method
- sorting
- Binary Search
- bit manipulation
- hash table
- Data Structure
- Class
- 코테
- database
- array
- SQL
- 구현
- Tree
- 파이썬
- Matrix
- string
- simulation
- greedy
- geometry
- implement
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.1] 문자열 다루기 기본 본문
1. Input
1) 문자열 s
2. Output
1) s의 길이가 4 혹은 6이고, 숫자로만 구성되어 있다면 true, 그렇지 않다면 false 반환
3. Constraint
1) s는 길이 1 이상 8 이하인 문자열
2) s는 영문 알파벳 대소문자 또는 0부터 9까지 숫자로 이루어져 있다.
4. Example
Input: s=“a234” -> Output: false
Input: s=“1234” -> Output: true
5. Code
1) 첫 코드(2022/??)
if(s.length() == 4 || s.length() == 6) // 길이 만족
return s.matches("[0-9]{4}") || s.matches("[0-9]{6}");
return false;
2) return문이 여러 개면 좋지 않은 코드라는 것을 본 후 수정해본 코드(2022/11/25)
boolean answer = false;
if(s.length() == 4)
answer = s.matches("[0-9]{4}");
else if(s.length() == 6)
answer = s.matches("[0-9]{6}");
return answer;
- 1번 코드보다 미세하게 빨라짐
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.1] 문자열 내 p와 y의 개수 (0) | 2022.11.25 |
---|---|
[프로그래머스/Lv.1] 문자열 내림차순으로 배치하기 (0) | 2022.11.25 |
[프로그래머스/Lv.1] 서울에서 김서방 찾기 (0) | 2022.11.25 |
[프로그래머스/Lv.1] 수박수박수박수박수박수? (0) | 2022.11.25 |
[프로그래머스/Lv.2] 올바른 괄호 (0) | 2022.11.25 |