[프로그래머스 1단계] [1차] 다트 게임 - c++
[프로그래머스/1단계] [1차] 다트 게임 - c++ 정말 어려웠던 문제 🥹 너무 복잡하게 생각하지 말라고, 공통된 요소들을 묶어서 바라보는 것이 좋음을 알게 해준 !! 알고가면 좋은 것들 n^a #include pow(n, a); if (isdigit(dartResult[i])) { // 현재 문자가 숫자인 경우 dartResult[i])-'0' 해주면 문자-> 숫자 풀이방법 : 주석 #include #include #include using namespace std; int solution(string dartResult) { int answer = 0; int score[3] = {0}; // 세 번의 점수를 저장할 배열 int idx = 0; // 현재 처리 중인 인덱스 for (int i = 0..
알고리즘/프로그래머스 1단계
2024. 3. 9. 12:02