😊 #12 프로그래머스 - 자릿수 더하기 / Stream의 maptoint 와 sum
[문제] [해설] - 쉬운 문제였다. 나의 풀이는 아래와 같다. class Solution { public int solution(int n) { int answer = 0; String[] arr = String.valueOf(n).split(""); for(String s : arr) { answer += Integer.parseInt(s); } return answer; } } ------------ 아래와 같이 해도 되더라 ------------ class Solution { public int solution(int n) { int answer = 0; for(String s : String.valueOf(n).split("")) { answer += Integer.parseInt(s); } r..
흥미/코딩테스트
2023. 2. 16. 01:32
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- OS
- Phaser3
- 프로그래머스
- Phaser
- API
- 알고리즘
- spring
- Spring Boot
- SpringBoot
- MongoDB
- db
- 빅데이터
- Advanced Stream
- MySQL
- git
- java
- DART
- 자료구조
- jpa
- Java8
- Stream
- node.js
- nosql
- 빅데이터 분석기사
- 운영체제
- 프로세스
- 코딩테스트
- 코테
- 메모리
- SQL
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
글 보관함