Skip to content

Commit

Permalink
이슈 #322에서 솔루션 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 19, 2024
1 parent accbef3 commit d76d1dc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Programmers/숨어있는_숫자의_덧셈_1.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#include <string>
#include <vector>

using namespace std;

int solution(string my_string) {
int answer = 0;

for (char c : my_string) {
if (isdigit(c)) {
answer += c - '0';
}
}

return answer;
}

0 comments on commit d76d1dc

Please sign in to comment.