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
- Tree
- Method
- Number Theory
- 코테
- two pointers
- Math
- 파이썬
- hash table
- Data Structure
- database
- geometry
- Counting
- array
- sorting
- 자바
- simulation
- java
- SQL
- greedy
- string
- 코딩테스트
- 구현
- Matrix
- Stack
- Class
- implement
- Binary Search
- bit manipulation
- dynamic programming
- Binary Tree
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1502. Can Make Arithmetic Progression From Sequence 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 1502. Can Make Arithmetic Progression From Sequence
무지맘 2022. 12. 27. 00:211. Input
1) 정수 배열 arr
2. Output
1) arr의 요소를 재배열했을 때 등차수열이 되면 true, 아니면 false를 반환
- 등차수열: 모든 항에 대해서 a_n+1 = a_n + d를 만족하는 수열
3. Constraint
1) 2 <= arr.length <= 1000
2) - 10^6 <= arr[i] <= 10^6
4. Example
Input: arr = [3,5,1] -> Output: true
설명:
- [1,3,5]로 배열하면 공차가 2인 등차수열이 된다.
- [5,3,1]로 배열하면 공차가 –2인 등차수열이 된다.
5. Code
1) 첫 코드(2022/06/29)
import java.util.*;
if(arr.length == 2)
return true;
Arrays.sort(arr);
int d = arr[0]-arr[1];
for(int i=1 ; i<arr.length-1 ; i++){
if(arr[i]-arr[i+1]!=d)
return false;
}
return true;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1512. Number of Good Pairs (0) | 2022.12.27 |
---|---|
[LeetCode/Easy] 1507. Reformat Date (0) | 2022.12.27 |
[LeetCode/Easy] 551. Student Attendance Record I (0) | 2022.12.26 |
[LeetCode/Medium] 28. Find the Index of the First Occurrence in a String (0) | 2022.12.26 |
[LeetCode/Medium] 215. Kth Largest Element in an Array (0) | 2022.12.26 |