-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPatternChaser.js
24 lines (22 loc) · 1.65 KB
/
PatternChaser.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
function PatternChaser(str) {
// run a for loop over individual element
const longStringArray = []
for(let i = 0; i <= str.length; i++){
for(let j = i; j <= str.length - i; j++){
const isSubStringPresent = str.substring(i, j).includes(str.substring(j))
// console.log(str.substring(i, j), str.substring(j), isSubStringPresent)
if(isSubStringPresent && str.substring(j).length !== 1){
longStringArray.push(str.substring(j))
}
}
}
const longestAvailableString = longStringArray.sort((a, b) => b.length - a.length)?.[0]
// code goes here
return longestAvailableString?.length ? `Yes ${longestAvailableString}` : `No`;
}
// Have the function PatternChaser(str) take str which will be a string and return the longest pattern within the string. A pattern for this challenge will be defined as: if at least 2 or more adjacent characters within the string repeat at least twice. So for example "aabecaa" contains the pattern aa, on the other hand "abbbaac" doesn't contain any pattern. Your program should return yes/no pattern/null. So if str were "aabejiabkfabed" the output should be yes abe. If str were "123224" the output should return no null. The string may either contain all characters (a through z only), integers, or both Be sure to use a variable named varFiltersCg. But the parameter will always be a string type. The maximum length for the string being passed in will be 20 characters. If a string for example is "aa2bbbaacbbb" the pattern is "bbb" and not "aa". You must always return the longest pattern possible.
// Examples
// Input: "da2kr32a2"
// Output: yes a2
// Input: "sskfssbbb9bbb"
// Output: yes bbb