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
- dynamic programming
- Tree
- database
- 파이썬
- string
- Binary Tree
- 구현
- simulation
- 코딩테스트
- SQL
- two pointers
- Class
- geometry
- Data Structure
- Method
- hash table
- array
- Number Theory
- Matrix
- Stack
- Binary Search
- sorting
- 코테
- 자바
- greedy
- java
- implement
- Math
- Counting
- bit manipulation
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 최댓값 만들기 (1) 본문
1. Input
1) 정수 배열 numbers
2. Output
1) numbers의 원소 중 두 개를 곱해 만들 수 있는 최댓값
3. Constraint
1) 0 ≤ numbers의 원소 ≤ 10,000
2) 2 ≤ numbers의 길이 ≤ 100
4. Example
Input: numbers={1,2,3,4,5} -> Output: 20
5. Code
1) 첫 코드(2022/10/25)
import java.util.Arrays;
// main()
Arrays.sort(numbers);
return numbers[numbers.length-1] * numbers[numbers.length-2];
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 모음 제거 (0) | 2022.10.27 |
---|---|
[프로그래머스/Lv.0] 팩토리얼 (0) | 2022.10.26 |
[프로그래머스/Lv.0] 합성수 찾기 (0) | 2022.10.26 |
[프로그래머스/Lv.0] 주사위의 개수 (0) | 2022.10.26 |
[프로그래머스/Lv.0] 배열 회전시키기 (0) | 2022.10.25 |