Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 495 Bytes

in_place_technique.md

File metadata and controls

8 lines (6 loc) · 495 Bytes

In Place Technique

In-Place array operations is a technique of working directly in the input Array, and not creating a new Array. And the space complexity of an in-place algorithm is O(1) which is constant space. It is a good way to save the memory.

Questions

Remove Duplicates from Sorted Array Remove Element Move Zeroes