Skip to content

Instantly share code, notes, and snippets.

View nrdcp's full-sized avatar

Dmitry Kurilchik nrdcp

  • London, UK
View GitHub Profile
// Untidy MVP
const bracketsParser = (string) => {
console.log(`== STRING: ${string}`);
const arr = string.split('');
const openingBracketsStack = [];
const openingBrackets = ['(', '[', '{'];
const closingBrackets = [')', ']', '}'];
if (arr.length % 2 === 1) {