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
- 자바스크립트
- kernel
- leetcode
- elasticsearch
- K8S
- Kubernetes
- POD
- Service
- dockerfile
- event loop
- IAC
- intervals
- Python
- ansible
- EC2
- EKS
- docker
- terraform
- IAM
- asyncio
- ebs
- Django
- asgi
- Deployment
- 쿠버네티스
- YAML
- FastAPI
- WSGI
- AWS
- github
Archives
- Today
- Total
궁금한게 많은 개발자 노트
[ leetcode ] 258. Add Digits 본문
string으로 들어온 숫자를 각 자리 수를 더해 한자리가 남을 때 까지 더하고 반환하는 문제입니다.
마지막 두 자리 수를 더해서 두 자리가 되면 사용한 두 칸을 비우고 다시 두칸을 더하고,
한 자리 수가 되면 사용한 두 칸을 비우고 한 자리를 더하는 방식으로 답을 구합니다.
class Solution {
public:
int addDigits(int num) {
while (num >= 10) {
int one = num % 10;
int two = (num / 10) % 10;
int sum = one + two;
num = sum >= 10 ? (num / 100 * 100) : (num / 100 * 10);
num += sum;
}
return num;
}
};
'Algorithm' 카테고리의 다른 글
[ leetcode ] 110. Balanced Binary Tree (0) | 2023.05.02 |
---|---|
[ leetcode ] 111. Minimum Depth of Binary Tree (0) | 2023.05.02 |
[ leetcode ] 1288. Remove Covered Intervals (0) | 2023.05.02 |
[ leetcode ] 56. Merge Intervals (0) | 2023.05.02 |
[ leetcode ] 1046. Last Stone Weight (0) | 2023.05.02 |
Comments