> For the complete documentation index, see [llms.txt](https://aisuko.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://aisuko.gitbook.io/wiki/freesoftware/algorithm/in_place_technique.md).

# 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](https://leetcode.com/problems/remove-duplicates-from-sorted-array/) [Remove Element](https://leetcode.com/problems/remove-element/) [Move Zeroes](https://leetcode.com/problems/move-zeroes/)
