You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for your submission, I have a couple of points of feedback:
You should probably specify an engine requirement in the package.json since you are using default arguments and they are not supported in the latest LTS node release (4.5.0).
Your balanced parentheses check is failing to return the proper result in some cases. Consider this string for example:
(() ()
This should return false, it has an unbalanced open paren followed by sets of balanced parentheses.
(() ())
This should return true, it has balance sets of parentheses within a balanced set of parentheses.
If you'd like to update your submission, just drop a comment here afterwards. Thanks!
Obviously there are some assumptions made here that I'd be happy to discuss.
https://github.com/dsimandl/float-programming-test
The text was updated successfully, but these errors were encountered: