반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 웹프로그래밍
- 리트코드
- dp
- 프로그래밍
- CS
- LeetCode
- Level1
- Medium
- 고득점Kit
- 동적계획법
- 리액트
- 프로그래머스
- 코테연습
- Level2
- javascript
- react
- VUE
- sql
- 자바스크립트
- 파이썬
- 배열
- typescript
- 백준
- 카카오
- Doitvue.js입문
- OS
- C++
- Level3
- python
- web
Archives
- Today
- Total
[리트코드] 2011. Final Value of Variable After Performing Operations - JavaScript 본문
코테 문제 풀이
[리트코드] 2011. Final Value of Variable After Performing Operations - JavaScript
미니모아 2023. 2. 15. 07:45반응형
There is a programming language with only four operations and one variable X:
- ++X and X++ increments the value of the variable X by 1.
- --X and X-- decrements the value of the variable X by 1.
Initially, the value of X is 0.
/**
* @param {string[]} operations
* @return {number}
*/
var finalValueAfterOperations = function(operations) {
return operations.reduce(((acc, cur) => cur[1] === '+'? ++acc: --acc), 0)
};
operation의 가운데 값은 항상 연산자이므로 가운데 값만 체크하면 된다.
reduce는 누적합을 계산할 수 있는 함수이며 콜백 인자로 아래 항목을 가진다.
- acc : 누적 값
- cur : 현재 처리할 요소
- currentIndex : 현재 인덱스
- array : reduce를 호출한 배열
또한 콜백 뒤에 initialValue를 지정할 수 있다.
반응형
'코테 문제 풀이' 카테고리의 다른 글
[리트코드] 1185. Day of the Week (0) | 2023.02.14 |
---|---|
[리트코드] 1108. Defanging an IP Address - Typescript (0) | 2023.02.14 |
[백준] 청소년 상어 - python (0) | 2022.05.28 |
[백준] 아기 상어 - python (0) | 2022.05.27 |
[프로그래머스] 외벽 점검 - python (0) | 2022.05.05 |
Comments