Skip to content

ninilo97/Hackerearth-Practice-Solution

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Hackerearth-Practice-Solution

Solution to Hackerearth Practice Section problems.

Description

Contains all my Hackerearth Practice Section Solution in c++14. Code are one-lined, so feel free to indent and/or expand according to your need. Thought the solution are free to use I would not recommend anyone to submit the solutions without understanding the exact approach and logic used.

Directory

.
β”œβ”€β”€ algorithm
β”‚   β”œβ”€β”€ graph representation
β”‚   β”œβ”€β”€ hamiltonian path
β”‚   └── linear search
β”œβ”€β”€ basic programming
β”‚   β”œβ”€β”€ basics of bit manipulation
β”‚   β”œβ”€β”€ basics of implementation
β”‚   β”œβ”€β”€ basics of io
β”‚   β”œβ”€β”€ basics of operators
β”‚   β”œβ”€β”€ complexity analysis
β”‚   └── recursion and backtracking
β”œβ”€β”€ data structures
β”‚   β”œβ”€β”€ 1-d
β”‚   └── multi-dimensional
β”œβ”€β”€ maths
β”‚   β”œβ”€β”€ basic number theory-1
β”‚   β”œβ”€β”€ basic number theory-2
β”‚   β”œβ”€β”€ basic of combinatorics
β”‚   β”œβ”€β”€ inclusion exclusion
β”‚   β”œβ”€β”€ primality test
β”‚   └── euler totient function
└── README.md

Notes

  • Files are named in alphabetical order.
  • All files are marked with the difficulty tag from hackerearth: _VE - VeryEasy, _E - Easy, _M - Medium and _H - Hard