▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/final-value-of-variable-after-performing-operations/ Final Value of Variable After Performing Operations - 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 하나의 변수 X와 4가지 연산자를 가진 언어가 있다. ++가 붙으면 변수 X의 값을 1씩 증가, --는 1씩 감소시킨다. 초기 X값은 0이며 주..