/leetcode-daily

Here we will push daily problem solutions from leetcode

Primary LanguageC++GNU General Public License v2.0GPL-2.0

leetcode-daily

Here we will push daily problem solutions from leetcode

Submission guide

Instruction for file name:

[problem_name]_[github_user_name].[file_ext]

Instruction for code:
// QS URL
class Solution {
public:
    /* Idea:
       write you brief/long idea here 
    */
    int some_function(some_arguments) {
      // comment on every logical block
      // highlight the complex details
    }
};