An open API service indexing awesome lists of open source software.

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

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.