Welcome! This is a TDD project for LeetCode solutions in C.
Test-driven development (TDD) is a software development process relying on software requirements being converted to test cases before software is fully developed, and tracking all software development by repeatedly testing the software against all test cases.
Programs and test cases are organized with Makefile. Do make
before running:
$ make
$ ./test
$ make clean
Firstly, all people are welcomed to contribute to this project.
Secondly, there are some rules to remember before making PR:
- Use kernel coding style.
- Be cautious to end file with LF instead CRLF to work well in Linux.
- Remember to write test cases when solving a new problem.