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
- 자바
- database
- dynamic programming
- Counting
- Data Structure
- simulation
- Binary Tree
- sorting
- Stack
- greedy
- array
- 코테
- java
- Matrix
- string
- 구현
- 파이썬
- two pointers
- hash table
- implement
- bit manipulation
- SQL
- Tree
- 코딩테스트
- Math
- Class
- geometry
- Method
- Binary Search
- Number Theory
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2562. Find the Array Concatenation Value 본문
1. Input
1) int[] nums
2. Output
1) 아래 순서에 따라 계산한 결과를 long으로 반환
- nums의 첫 요소를 앞에, 마지막 요소를 뒤에 붙여 1개의 수를 만든다.
- 사용한 요소는 삭제하고, nums의 요소가 모두 사용될 때까지 위와 같은 방법으로 수를 만든다.
- 만든 모든 수를 더한다.
3. Constraint
1) 1 <= nums.length <= 1000
2) 1 <= nums[i] <= 10^4
4. Example
Input: nums = [7,52,2,4] -> Output: 596
설명:
- 7과 4를 붙여 74를 만들고, 7과 4를 삭제 -> nums = [52,2]
- 52와 2를 붙여 522를 만들고, 52와 2를 삭제 -> nums = []
- nums가 비었으므로, 74+522=596을 반환한다.
5. Code
1) 첫 코드(2023/03/02)
long answer = 0;
int low = 0, high = nums.length-1;
while(low<high)
answer += Integer.valueOf(String.valueOf(nums[low++]) + String.valueOf(nums[high--]));
if(low==high) answer += nums[low];
return answer;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 575. Distribute Candies (0) | 2023.03.06 |
---|---|
[LeetCode/Easy] 2558. Take Gifts From the Richest Pile (0) | 2023.03.02 |
[LeetCode/Medium] 532. K-diff Pairs in an Array (0) | 2023.03.02 |
[LeetCode/Easy] 2566. Maximum Difference by Remapping a Digit (0) | 2023.03.01 |
[LeetCode/Medium] 503. Next Greater Element II (0) | 2023.02.27 |