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
- Number Theory
- Class
- Data Structure
- string
- Matrix
- 파이썬
- 자바
- database
- Method
- 구현
- Stack
- Binary Tree
- Tree
- greedy
- java
- two pointers
- implement
- 코테
- simulation
- Binary Search
- bit manipulation
- Counting
- geometry
- array
- sorting
- dynamic programming
- SQL
- Math
- 코딩테스트
- hash table
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 다음에 올 숫자 본문
1. Input
1) 등차수열 혹은 등비수열이 담긴 int 배열 common
2. Output
1) 마지막 원소 다음으로 올 숫자
3. Constraint
1) 2 < common의 길이 < 1,000
2) -1,000 < common의 원소 < 2,000
3) 등차수열 혹은 등비수열이 아닌 경우는 없다.
4) 공비가 0인 경우는 없다.
4. Example
Input: common={1,2,3,4} -> Output: 5
Input: common={2,4,8} -> Output: 16
설명:
- 공차가 1인 등차수열이므로 다음 항은 4+1=5
- 공비가 2인 등비수열이므로 다음 항은 8*2=16
5. Code
1) 첫 코드(2022/10/31)
return (common[1]-common[0])==(common[2]-common[1])
? common[common.length-1]+(common[1]-common[0])
: common[common.length-1]*(common[1]/common[0]);
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 숨어있는 숫자의 덧셈 (2) (0) | 2022.11.09 |
---|---|
[프로그래머스/Lv.0] 종이 자르기 (0) | 2022.11.09 |
[프로그래머스/Lv.0] 로그인 성공? (0) | 2022.11.09 |
[프로그래머스/Lv.0] 치킨 쿠폰 (0) | 2022.11.09 |
[프로그래머스/Lv.0] 안전지대 (0) | 2022.11.09 |