diff --git a/프로그래머스/2/42626. 더 맵게/README.md b/프로그래머스/2/42626. 더 맵게/README.md index c26b66d..1fa41cc 100644 --- a/프로그래머스/2/42626. 더 맵게/README.md +++ b/프로그래머스/2/42626. 더 맵게/README.md @@ -1,6 +1,6 @@ # [level 2] 더 맵게 - 42626 -[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/42626?language=python3) +[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/42626) ### 성능 요약 @@ -16,7 +16,7 @@ ### 제출 일자 -2025년 03월 26일 16:57:20 +2025년 03월 26일 16:57:27 ### 문제 설명 diff --git a/프로그래머스/2/42626. 더 맵게/더 맵게.cpp b/프로그래머스/2/42626. 더 맵게/더 맵게.cpp new file mode 100644 index 0000000..7a63e5b --- /dev/null +++ b/프로그래머스/2/42626. 더 맵게/더 맵게.cpp @@ -0,0 +1,9 @@ +#include +#include + +using namespace std; + +int solution(vector scoville, int K) { + int answer = 0; + return answer; +} \ No newline at end of file