Skip to content

madaniel/Interviews

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 

Repository files navigation

Interviews

known interview questions with solutions

Assignment level 1

  1. Implement a basic Stack.

Requirements:

  • The stack will accept only int numbers.
  • The stack should created with capacity > 0.
  • The stack should not exceed its own capacity.
  • No need to consider complexity at this time.
  1. Write tests to verify the functionality of the Stack.

Try to refer to both positive and negative scenarios. Aim to achieve 100% coverage.

  1. Add function get_minimum_fast() to Stack class.

  2. Run the tests you've wrote for get_minimum_fast() and make sure they all pass.

About

Code starter and solutions for interview questions

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages