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
- javascript
- 맛집
- 노노그램
- 취미
- DIY
- 나쫌
- 뜨아거
- 천등
- 발더스게이트
- 밥먹고
- LeetCode
- 메일우유
- 코테
- 발더스3
- 게임
- 메탈퍼즐
- 발더스모드
- 코딩테스트
- 토이프로젝트
- 눈알빠지겠네
- 버즈2프로
- 송리단
- 3d퍼즐
- 미앤아이
- 잠실새내
- 하스스톤
- 알고리즘테스트
- 누룽지소금빵
- 서울제빵소
- 바질토마토뭐시기
Archives
- Today
- Total
.Zzumbong
[leetCode/JS] 1624. Largest Substring Between Two Equal Characters 본문
coding test/leetCode
[leetCode/JS] 1624. Largest Substring Between Two Equal Characters
쭘봉 2023. 9. 29. 21:30난이도 [ 😊 ] Easy
문제 설명
Given a string s
, return the length of the longest substring between two equal characters, excluding the two characters. If there is no such substring return -1
.
A substring is a contiguous sequence of characters within a string.
문자열 s가 주어진다. 두 문자를 제외한 두 개의 문자 사이의 가장 긴 부분 문자열의 길이를 반환한다.
문자열이 없으면 -1을 반환한다.
입출력 예
Example 1:
Input: s = "aa"
Output: 0
Explanation: The optimal substring here is an empty substring between the two'a'
s.
Example 2:
Input: s = "abca"
Output: 2
Explanation: The optimal substring here is "bc".
Example 3:
Input: s = "cbzxy"
Output: -1
Explanation: There are no characters that appear twice in s.
Constraints
1 <= s.length <= 300
s
contains only lowercase English letters.
내 솔루션
- object map을 이용해서 이전에 나왔던 글자의 index를 저장해둔다.
- 만약 map에 저장된 글자가 있다면 저장된 index와 현재 index를 비교해서 사이에 글자가 몇개인지 개산한다.
- 계산된 length를 maxLength에 저장하고 비교하며 큰 값으로 갱신한다.
/**
* @param {string} s
* @return {number}
*/
var maxLengthBetweenEqualCharacters = function(s) {
const map = {}
let maxLength = -1
for(let i = 0; i < s.length; i++){
const str = s[i]
if(map[str] !== undefined){
maxLength = Math.max(maxLength, i - map[str] - 1)
}else{
map[str] = i
}
}
return maxLength
};
감상평
- map 을 이용하는 것만 생각하면 금방 해결된다.
- map을 new Map()으로 만들면 더 빠르게 해결될 것 같긴하다.
'coding test > leetCode' 카테고리의 다른 글
[leetCode/JS] 2038. Remove Colored Pieces if Both Neighbors are the Same Color (0) | 2023.10.02 |
---|---|
[leetCode/JS] 557. Reverse Words in a String III (0) | 2023.10.01 |
[leetCode/JS] 896. Monotonic Array (0) | 2023.09.29 |
[leetCode/JS] 880. Decoded String at Index (0) | 2023.09.28 |
[leetCode/JS] 905. Sort Array By Parity (0) | 2023.09.28 |
Comments