Skip to content

Latest commit

 

History

History
executable file
·
34 lines (26 loc) · 1.54 KB

README.md

File metadata and controls

executable file
·
34 lines (26 loc) · 1.54 KB

LeetCode Problems

This repository is intended to document the LeetCode questions on algorithms and data structures in modern C++.

How to get setup?

How to add a new problem?

  • Create a directory with the number of the problem and the name, remove special characters replace spaces with "_" eg: 13. Roman to Integer resolves in 13_Roman_to_Integer

  • When submitting a problem a create the cpp file in a way that you just need to copy the class for submitting eg:

      class Solution
      {
      public:
        void leetCodeFunction()
        {
          // Code goes here;
        }
      }

License

MIT