682. Baseball Game
https://leetcode.com/problems/baseball-game/ Baseball Game - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 난이도 : easy 문제 총 합산점수를 반환하라 문자열이 + D C 그리고 숫자가 입력으로 들어온다 + 앞에 두수를 더하고 C 면 앞에수를 빼고 D 면 앞에수에 2를 곱한 값을 삽입한다. 전형적인 구현문제로서 Stack 자료형으로 쉽게 풀 수 있다. 코드 class Solution { public: int c..
Developer/LEETCODE
2021. 9. 8. 19:18