Skip to content

Commit

Permalink
balanced bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
brendonmiranda committed Oct 31, 2024
1 parent a41c8c3 commit a4de8ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ This repo register my evolution in the Cracking The Coding Interview book as I g

[File System Recursion](https://github.com/brendonmiranda/CrackingTheCodingInterview/blob/main/src/main/java/algorithm/recursion/FileSystem.java)

[Balanced Bracket](https://github.com/brendonmiranda/CrackingTheCodingInterview/blob/main/src/main/java/data/structure/stack/Brackets.java)

# AWS Challenges

[Review Score](https://github.com/brendonmiranda/CrackingTheCodingInterview/blob/main/src/main/java/aws/ReviewScore.java)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/data/structure/stack/Brackets.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

/**
* Check if string is a balanced bracket or not. e.g (([{}])) is balanced, (([{])) it is not.
* That's a stack data structure solution o(n)
* That's a stack data structure solution o(n) in which n is the amount of characters in the string
*/
public class Brackets {

Expand Down

0 comments on commit a4de8ff

Please sign in to comment.