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
- java
- Method
- 코딩테스트
- Data Structure
- 파이썬
- Binary Search
- two pointers
- 코테
- Binary Tree
- SQL
- geometry
- 구현
- string
- Number Theory
- sorting
- Counting
- 자바
- dynamic programming
- array
- database
- Matrix
- Math
- Tree
- Stack
- hash table
- bit manipulation
- simulation
- implement
- greedy
- Class
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2578. Split With Minimum Sum 본문
1. Input
1) int num
2. Output
1) num의 숫자들을 재배치해서 0이 아닌 정수 2개를 만들었을 때, 만들 수 있는 두 수의 합 중 가장 작은 것을 반환
3. Constraint
1) 10 <= num <= 10^9
4. Example
Input: num = 4325 -> Output: 59
설명:
- 4325를 두 수 24, 35로 나눴을 때 합이 59로 가장 작다.
5. Code
1) 첫 코드(2023/03/06)
char[] c = String.valueOf(num).toCharArray();
Arrays.sort(c);
String s1 = "", s2 = "";
int i = 0;
while(i<c.length){
if(i%2==0)
s1 += c[i++];
else
s2 += c[i++];
}
return Integer.valueOf(s1) + Integer.valueOf(s2);
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 1978. 소수 찾기 (0) | 2023.03.07 |
---|---|
[LeetCode/Medium] 2579. Count Total Number of Colored Cells (0) | 2023.03.06 |
[LeetCode/Easy] 575. Distribute Candies (0) | 2023.03.06 |
[LeetCode/Easy] 2558. Take Gifts From the Richest Pile (0) | 2023.03.02 |
[LeetCode/Easy] 2562. Find the Array Concatenation Value (0) | 2023.03.02 |