https://github.com/1c7/cs-piece-knowledge
small piece of knowledge I find interesting
https://github.com/1c7/cs-piece-knowledge
Last synced: 21 days ago
JSON representation
small piece of knowledge I find interesting
- Host: GitHub
- URL: https://github.com/1c7/cs-piece-knowledge
- Owner: 1c7
- Created: 2016-11-24T13:03:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-24T13:06:58.000Z (over 8 years ago)
- Last Synced: 2025-02-10T22:29:53.011Z (2 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 1. Pair symbol in string
for example"{([])}" should return true
"{{]" should return false
Answer: Use Stack
You would see this problem at Leetcode or somewhere like codewar. sooner or later.