Skip to content

Latest commit

 

History

History
58 lines (48 loc) · 1.28 KB

dev_guide.md

File metadata and controls

58 lines (48 loc) · 1.28 KB

📒: NOTE

  • All most 80% of file contain Solution Class only
  • for problem statement because of
    • GFG practice problems
    • Leetcode problem
  • So main function and print statement .. have to write exclusively ... to see the result
  • but i have tried to add print statement in many files ... but no main fun

🏃‍♂️: EXECUTION of code

  1. Open terminal to that file location
  2. Compile / Run the File
    • CPP:- g++ ./[file-name].cpp && ./a.exe
    • JAVA:- java [file-name].java

👀: EXAMPLE to execute

  • CPP

    1. cd ./Problem/Array/1/
    2. g++ ./a.cpp && ./a.exe
  • JAVA

    1. cd ./Problem/Array/5/
    2. java c.java

📂: Folder Structure

Blue Print

  • All Problems
    • on which Topics (ie. sub-catagories)
      • then no of problems assigned (ex. 10 for matrix)
        • then a.java, b.py, c.cpp, ..... (solution for then / through multiple approach ie. a, b, c) in diff lang if needed
        • readme.md ... links / contain all that i learned n details of individual file

Show case /... how actually is organized

  • Problem
    • Array
    • Matrix
      • 1
      • 2
      • 3
        • a.java
        • b.py
        • c.cpp
        • ...
        • readme.md
      • ...
      • 9
      • 10
    • String
    • Searching & Sorting
    • .
    • .
    • .
    • Dynamic Programming
    • Bit Manipulation