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
- 코테
- Number Theory
- Method
- Counting
- 구현
- 파이썬
- hash table
- 코딩테스트
- Binary Search
- Class
- Tree
- two pointers
- Stack
- simulation
- dynamic programming
- string
- 자바
- Math
- Matrix
- Binary Tree
- SQL
- Data Structure
- database
- java
- implement
- array
- sorting
- greedy
- bit manipulation
- geometry
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1844. Replace All Digits with Characters 본문
1. Input
1) 문자열 s
- s의 홀수번째 문자는 숫자다. (0-indexed)
2. Output
1) s를 아래 함수를 이용해 숫자를 문자로 변환한 결과를 문자열로 반환
// function: shift(c, x)
- c는 문자, x는 숫자
- shift(c, x)의 결과: c로부터 x만큼 떨어져 있는 문자. 예를 들어 shift('a', 5) = 'f', shift('x', 0) = 'x‘
3. Constraint
1) 1 <= s.length <= 100
2) s는 영어 소문자와 숫자로만 이루어져 있다.
3) shift 함수의 결과는 영어 소문자만 나온다.
4. Example
Input: s = "a1c1e1" -> Output: "abcdef"
설명:
- s[1] -> shift('a',1) = 'b'
- s[3] -> shift('c',1) = 'd'
- s[5] -> shift('e',1) = 'f’
5. Code
1) 첫 코드(2022/06/14)
String result = "";
for(int i=0 ; i<s.length()/2 ; i++){
result += s.charAt(2*i) + "" ;
result += (char)(s.charAt(2*i) + s.charAt(2*i+1) - '0');
}
if(s.length()%2 != 0)
result += s.charAt(s.length()-1) + "" ;
return result;
2) 간결하게 바꿔본 코드(2023/01/05)
char[] c = s.toCharArray();
for(int i=1 ; i<c.length ; i+=2)
c[i] += c[i-1] - '0';
return new String(c);
- 속도는 월등히 빨라졌지만, 배열을 써서 그런지 메모리 사용량은 높았다.
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1848. Minimum Distance to the Target Element (0) | 2023.01.07 |
---|---|
[LeetCode/Easy] 21. Merge Two Sorted Lists (0) | 2023.01.05 |
[LeetCode/Easy] 1837. Sum of Digits in Base K (0) | 2023.01.05 |
[LeetCode/Easy] 1832. Check if the Sentence Is Pangram (0) | 2023.01.05 |
[LeetCode/Easy] 1827. Minimum Operations to Make the Array Increasing (0) | 2023.01.05 |