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
- simulation
- dynamic programming
- SQL
- sorting
- Matrix
- array
- Math
- java
- Method
- bit manipulation
- 파이썬
- 구현
- 자바
- implement
- Stack
- 코테
- greedy
- database
- geometry
- two pointers
- Number Theory
- hash table
- Class
- string
- Counting
- Tree
- 코딩테스트
- Data Structure
- Binary Tree
- Binary Search
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2437. Number of Valid Clock Times 본문
1. Input
1) String time
2. Output
1) time에 있는 ?을 0~9까지의 숫자 중 1개로 바꿨을 때 유효한 시간의 개수를 반환
3. Constraint
1) time은 "hh:mm"의 형태이의 문자열이다.
2) "00" <= hh <= "23"
3) "00" <= mm <= "59"
4) ?이 있다면 반드시 0부터 9까지의 숫자 중 1개로 바꿔야 한다.
4. Example
Input: time = "?5:00" -> Output: 2
설명: 가능한 시간은 05:00, 15:00의 2가지이다.
5. Code
1) 첫 코드(2023/05/03)
class Solution {
public int countTime(String time) {
int h, m;
if(time.charAt(0)=='?'){
if(time.charAt(1)=='?') h = 24;
else{
if(time.charAt(1)<='3') h = 3;
else h = 2;
}
} else if(time.charAt(1)=='?'){
if(time.charAt(0)=='2') h = 4;
else h = 10;
} else
h = 1;
if(time.charAt(3)=='?'){
if(time.charAt(4)=='?') m = 60;
else m = 6;
} else if(time.charAt(4)=='?'){
m = 10;
} else
m = 1;
return h*m;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 배열 조각하기 (0) | 2023.05.03 |
---|---|
[프로그래머스/Lv.1] 예산 (0) | 2023.05.03 |
[LeetCode/Easy] 2432. The Employee That Worked on the Longest Task (0) | 2023.05.03 |
[LeetCode/Easy] 2427. Number of Common Factors (0) | 2023.05.03 |
[LeetCode/Easy] 2418. Sort the People (0) | 2023.05.03 |