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
- Class
- SQL
- Binary Search
- Data Structure
- hash table
- two pointers
- 구현
- Counting
- string
- 파이썬
- Tree
- Math
- bit manipulation
- java
- 코딩테스트
- Method
- Stack
- simulation
- greedy
- sorting
- array
- geometry
- database
- 자바
- Matrix
- Number Theory
- Binary Tree
- dynamic programming
- implement
- 코테
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 최댓값 만들기 (2) 본문
1. Input
1) 정수 배열 numbers
2. Output
1) numbers의 원소 중 2개를 곱해 만들 수 있는 최댓값
3. Constraint
1) -10,000 ≤ numbers의 원소 ≤ 10,000
2) 2 ≤ numbers 의 길이 ≤ 100
4. Example
Input: numbers={1,2,-3,4,-5} -> Output: 15
설명: -3과 –5의 곱인 15가 가장 큰 수
5. Code
1) 첫 코드(2022/11/02)
import java.util.Arrays;
// main()
Arrays.sort(numbers);
int n1 = numbers[numbers.length-1]*numbers[numbers.length-2];
int n2 = numbers[0]*numbers[1];
return Math.max(n1, n2);
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 연속된 수의 합 (0) | 2022.11.09 |
---|---|
[프로그래머스/Lv.0] 다항식 더하기 (0) | 2022.11.02 |
[프로그래머스/Lv.0] 캐릭터의 좌표 (0) | 2022.11.02 |
[프로그래머스/Lv.0] 직사각형 넓이 구하기 (0) | 2022.11.02 |
[프로그래머스/Lv.0] 머쓱이보다 키 큰 사람 (0) | 2022.11.02 |