Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.27 KB

File metadata and controls

26 lines (19 loc) · 1.27 KB

Interview Coding Question

This Repository contains coding exercises asked during interview phase.

Steps to get started:

Take a clone of this repo on your local machine using https://github.com/devcoder007/Coding_Exercises.git

After Cloning, execute below mentioned steps to get started:

  • Checkout to a new branch git checkout -b <your_branch_name>
  • Edit/Add the contents you want to in a folder named with you name. If folder is not present then create it in the main directory
  • check the status using git status
  • Add your changes using git add .
  • Commit your changes using git commit -m "<commit_message>"
  • Push changes to global repo using git push -u origin <your_branch_name>

Naming Conventions

  • Commit_message will manifest the code functionality. So that if requires we can search code by name
  • Make branch name after your name, and suffix three digits Ex NAME-001
  • Always commit to your branch and make changes in your directory.
  • Never use name names like temp, test1, etc for naming your code.
  • Attach your code complexity at the last line of your Script/Code as comment.
  • Provide additional information required to run the program in form of comments in your Script/Code.
  • Provide testcases in comments in your Script/Code.