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
- Number Theory
- geometry
- database
- 파이썬
- 코테
- Tree
- 구현
- string
- greedy
- Math
- SQL
- 코딩테스트
- Matrix
- Stack
- Counting
- simulation
- dynamic programming
- Binary Search
- two pointers
- Data Structure
- java
- bit manipulation
- Class
- implement
- Binary Tree
- 자바
- sorting
- array
- Method
- hash table
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2544. Alternating Digit Sum 본문
1. Input
1) int n
2. Output
1) n의 각 자리 숫자를 다음 규칙에 맞게 더한 값을 반환
- 맨 앞자리의 부호는 +로 한다.
- 그 다음부터는 -, +를 번갈아가면서 매긴 후 더한다.
3. Constraint
1) 1 <= n <= 10^9
4. Example
Input: n=886996 -> Output: 0
설명: (+8) + (-8) + (+6) + (-9) + (+9) + (-6) = 0
5. Code
1) 첫 코드(2023/03/10)
char[] c = String.valueOf(n).toCharArray();
int a = 0, b = 0;
for(int i=0 ; i<c.length ; i++){
if(i%2==0) a += c[i]-'0';
else b += c[i]-'0';
}
return a-b;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 674. Longest Continuous Increasing Subsequence (0) | 2023.03.13 |
---|---|
[LeetCode/Easy] 2586. Count the Number of Vowel Strings in Range (0) | 2023.03.13 |
[LeetCode/Easy] 645. Set Mismatch (0) | 2023.03.10 |
[LeetCode/Easy] 643. Maximum Average Subarray I (0) | 2023.03.09 |
[LeetCode/Easy] 2553. Separate the Digits in an Array (0) | 2023.03.08 |