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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
#!/usr/bin/env node
// ch-2.js
/**
* https://theweeklychallenge.org/blog/perl-weekly-challenge-131/
*
* Task 2 > Find Pairs
* ===================
*
* You are given a string of delimiter pairs and a string to search.
*
* Write a script to return two strings the first with any characters matching
* the "opening character" set, the second with any matching the "closing
* character" set.
*
* Example 1:
*
* Input:
*
* Delimiter pairs: ""[]()
*
* Search String: "I like (parens) and the Apple ][+" they said.
*
* Output:
*
* "(["
*
* "])"
*
* Example 2:
*
* Input:
*
* Delimiter pairs: ** //<>
*
* Search String: /* This is a comment (in some languages) * / <could be a tag>
*
* Output:
* /** /<
* /** />
**/
'use strict';
/**
* Node built-in dependencies
**/
const readline = require('readline');
/**
* Here, our Find Pairs function (PWC Solution)
**/
function findPairs(delimiters = '', string = '') {
const [openSet, closeSet] = [...delimiters].reduce(
([open, close], el, idx) => {
if (idx % 2) return [open, [...close, el]];
return [[...open, el], close];
},
[[], []]
);
return [...string].reduce(
([open, close], el) => {
if (openSet.includes(el)) open.push(el);
if (closeSet.includes(el)) close.push(el);
return [open, close];
},
[[], []]
);
}
/**
* Utilities
**/
function printResults(results = [[]]) {
results.forEach(result => {
console.log(result.join(''));
});
}
/**
* And our CLI
**/
(function main() {
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
function run() {
console.log('Welcome to delimiter search (type "exit" or Ctrl+c to quit).');
rl.question('Please provide delimiter string (ie: []{}**): ', (delims) => {
if (delims.trim() === 'exit') process.exit(0);
rl.question('Please provide search string: ', (string) => {
if (string.trim() === 'exit') process.exit(0);
console.log('Results: ');
printResults(findPairs(delims.trim(), string));
run();
});
});
}
run();
})();
|