├── problems/ # Problem solutions organized by name │ ├── two_sum/ # Individual problem directories │ │ ├── config.yml # Problem metadata and configuration │ │ ├── two_sum.py # Python solution │ │ ├── ...
src/solutions: will holds all your solutions. The code are in the same code format as the leetcode requires, so when you passed your own unit test cases, it can be directly copied and pasted on the ...