Skip to content

Latest commit

 

History

History
18 lines (9 loc) · 614 Bytes

File metadata and controls

18 lines (9 loc) · 614 Bytes

Add your answers to the questions below.

  1. What is the runtime complexity of your ring buffer's append method?

  2. What is the space complexity of your ring buffer's append function?

  3. What is the runtime complexity of your ring buffer's get method?

  4. What is the space complexity of your ring buffer's get method?

  5. What is the runtime complexity of the provided code in names.py?

  6. What is the space complexity of the provided code in names.py?

  7. What is the runtime complexity of your optimized code in names.py?

  8. What is the space complexity of your optimized code in names.py?