Skip to content

Iggy-Codes/tdd-js-jasmine-exercises

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Skylab JavaScript jasmine

Synopsis

Write a program to determine if the the parentheses (), the brackets [], and the braces {}, in a string are balanced.

For example:

{{)(}} is not balanced because ) comes before (

({)} is not balanced because ) is not balanced between {} and similarly the { is not balanced between ()

[({})] is balanced

{}([]) is balanced

{()}[[{}]] is balanced

From Balanced Parentheses in Cyber Dojo

Motivation

Practice to code following the test-driven development (tdd) process
Done during the MEAN Stack Skylabcoders Academy bootcamp.

About

Test-driven development using Jasmine and JavaScript

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published