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
- 발더스모드
- 맛집
- 발더스게이트
- 취미
- 메탈퍼즐
- 메일우유
- 노노그램
- 박주영판사
- 눈알빠지겠네
- 발더스3
- 서울제빵소
- 나쫌
- 버즈2프로
- 밥무하마드
- 바질토마토뭐시기
- 롱라이플
- LeetCode
- 뜨아거
- 제프딕슨
- 우리시대의역설
- 게임
- DIY
- 누룽지소금빵
- 송리단
- 미앤아이
- javascript
- 토이프로젝트
- 코딩테스트
- 코테
- 알고리즘테스트
Archives
- Today
- Total
.Zzumbong
[leetCode/JS]1408. String Matching in an Array 본문
난이도 [ 😊 ] Easy
문제 설명
Given an array of string words
, return all strings in words
that is a substring of another word. You can return the answer in any order.
A substring is a contiguous sequence of characters within a string
입출력 예
Example 1:
Input: words = ["mass","as","hero","superhero"]
Output: ["as","hero"]
Explanation: "as" is substring of "mass" and "hero" is substring of "superhero".
["hero","as"] is also a valid answer.
Example 2:
Input: words = ["leetcode","et","code"]
Output: ["et","code"]]
Explanation: "et", "code" are substring of "leetcode".
Example 3:
Example 3: In put: words = ["blue","green","bu"]
Output: [] Explanation: No string of words is substring of another -string.
Constraints
1 <= words.length <= 100
1 <= words[i].length <= 30
words[i]
contains only lowercase English letters.- All the strings of
words
are unique.
내 솔루션
var stringMatching = function(words) {
// 길이 순으로 정렬해서 뒤쪽에 필요없는 비교를 줄임.
words.sort((a, b) => a.length - b.length);
const returnVal = new Set();
// 정렬했기 때문에 i는 항상 j보다 항상 짧은 단어
for(let i = 0; i < words.length; i++) {
for(let j = i + 1; j < words.length; j++) {
if(words[i] === words[j]) continue;
if(words[j].includes(words[i])) {
returnVal.add(words[i]);
break;
}
}
}
return [...returnVal];
};
감상평
- 25년 첫 리트코드로써 딱 좋은 난이도의 문제였다.
'coding test > leetCode' 카테고리의 다른 글
[leetCode/JS] 343. Integer Break (0) | 2023.10.06 |
---|---|
[leetCode/JS] 706. Design HashMap (0) | 2023.10.04 |
[leetCode/JS] 6. Zigzag Conversion (0) | 2023.10.04 |
[leetCode/JS] 1512. Number of Good Pairs (0) | 2023.10.03 |
[leetCode/JS] 2038. Remove Colored Pieces if Both Neighbors are the Same Color (0) | 2023.10.02 |
Comments