์ฒด๊ฐ Level : โ
โ โ Review: ์์คํค์ฝ๋ ๊ฐ์ ์ด์ฉํ๋ฉด ์ฝ๊ฒ ํ ์ ์๋ ๋ฌธ์ !! |
๐ก my_string ์์ ์๋ ์ซ์๋ง ๊ณจ๋ผ ๋ํ๊ธฐ
https://hyejux.tistory.com/583 << ํด๋น ๋ฌธ์ ์ ๋น์ทํด์ ์ค๋ช ์ ์๋ต !!
class Solution {
public int solution(String my_string) {
int answer = 0;
for(int i = 0; i <my_string.length(); i++){
if (48 <= my_string.charAt(i) && my_string.charAt(i) <= 57){
answer += ((my_string.charAt(i))-48);
}
}
return answer;
}
}