Codility: Brackets Solution

Lesson 7 Stacks and Queues
1function Stack() {
2 stack = []
3
4 this.push = function (el) {
5 stack.push(el)
6 }
7
8 this.pop = function () {
9 return stack.pop()
10 }
11
12 return {
13 ...this,
14 get size() {
15 return stack.length
16 },
17 get head() {
18 return stack[this.size - 1]
19 },
20 }
21}
22
23function solution(S) {
24 const isOpen = c => "{[(".includes(c)
25 const closeOf = c =>
26 ({
27 "{": "}",
28 "[": "]",
29 "(": ")",
30 }[c])
31 const chars = S.split("")
32 const stack = new Stack()
33 chars.forEach(c => {
34 if (isOpen(c)) {
35 stack.push(c)
36 } else if (c === closeOf(stack.head)) {
37 stack.pop()
38 } else {
39 stack.push(c)
40 }
41 })
42 return stack.size === 0 ? 1 : 0
43}

Comments

Loading comments...

Tags

codility

Apply and earn a $2,500 bonus once you're hired on your first job!

Clients from the Fortune 500 to Silicon Valley startups

Choose your own rate, get paid on time

From hourly, part-time, to full-time positions

Flexible remote working environment

A lot of open JavaScript jobs!!

Fact corner: Referred talent are 5x more likely to pass the Toptal screening process than the average applicant.

Still hesitate? Read HoningJS author's guide on dealing with Toptal interview process.

Next Post

LeetCode: Kth Largest Element In An Array

Jan 24, 2021

Previous Post

Codility: Fish

Jan 23, 2021

Lesson 7 Stacks and Queues

HoningJS

Search Posts