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 |
Tags
- Matrix
- Class
- array
- 파이썬
- simulation
- sorting
- greedy
- 코테
- Counting
- dynamic programming
- Number Theory
- 자바
- database
- Stack
- Math
- java
- bit manipulation
- implement
- hash table
- Data Structure
- geometry
- 코딩테스트
- Tree
- 구현
- Binary Tree
- two pointers
- string
- SQL
- Method
- Binary Search
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2011. Final Value of Variable After Performing Operations 본문
코딩테스트 풀이/JAVA
[LeetCode/Easy] 2011. Final Value of Variable After Performing Operations
무지맘 2023. 1. 11. 00:401. Input
1) 문자열 배열 operations
2. Output
1) operations를 모두 수행한 후의 값을 반환
- 초기 값은 0이다.
3. Constraint
1) 1 <= operations.length <= 100
2) operations의 요소는 "++X", "X++", "--X", "X--"뿐이다.
4. Example
Input: operations = ["--X","X++","X++"] -> Output: 1
설명: 0 – 1 + 1 + 1 = 1이므로 1을 반환한다.
5. Code
1) 첫 코드(2022/06/02)
int x = 0;
for(int i=0 ; i<operations.length ; i++){
if(operations[i].charAt(0) == '+') x++;
else if(operations[i].charAt(0) == '-') x--;
else{
if(operations[i].charAt(1) == '+') x++;
else if(operations[i].charAt(1) == '-') x--;
}
}
return x;
2) 좀더 줄여본 코드(2023/01/11)
int x = 0;
for(int i=0 ; i<operations.length ; i++){
if(operations[i].charAt(1) == '+') x++;
else x--;
}
return x;
- 비교 연산이 줄어드니까 확실히 모든 면에서 좋아진 성능을 보였다.
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2022. Convert 1D Array Into 2D Array (0) | 2023.01.11 |
---|---|
[LeetCode/Easy] 2016. Maximum Difference Between Increasing Elements (0) | 2023.01.11 |
[LeetCode/Easy] 2006. Count Number of Pairs With Absolute Difference K (0) | 2023.01.11 |
[LeetCode/Easy] 2000. Reverse Prefix of Word (0) | 2023.01.09 |
[LeetCode/Easy] 1995. Count Special Quadruplets (0) | 2023.01.09 |