# leetcode-in-c **Repository Path**: nbztx/leetcode-in-c ## Basic Information - **Project Name**: leetcode-in-c - **Description**: A leetcode solution set in c with test cases. - **Primary Language**: C - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2021-07-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Welcome! This is a TDD project for LeetCode solutions in C. # What is TDD? 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. # How to run each program? Programs and test cases are organized with Makefile. Do `make` before running: ```bash $ make $ ./test $ make clean ``` # How to contribute to this project? Firstly, all people are welcomed to contribute to this project. Secondly, there are some rules to remember before making PR: 1. Use kernel coding style. 2. Be cautious to end file with LF instead CRLF to work well in Linux. 3. Remember to write test cases when solving a new problem.