Skip to content

Latest commit

 

History

History
18 lines (8 loc) · 360 Bytes

README.md

File metadata and controls

18 lines (8 loc) · 360 Bytes

problem-solving

  • Implement a function that returns the minimum element in a stack in constant time complexity.

  • Given a queue of integers, reverse the order of the elements in the queue.

  • Implement a Queue using 2 stacks s1 and s2.

Use recursion to solve the following problems:

  • Fibonacci Series

  • The sum of Array Elements

  • Reverse a String