## Pattern Name: Two Pointers - #### Description: - Use multiple points to iterate through an array in unique patterns, such as from the start and end of the array at the same time - This allows for searching a sub-array or a mini-array within the main array - #### Applicable Data Structures: - [[Sorted Array]] - #### Diagram: - #### When to Use: ## Key Considerations - #### General Tips: - #### Performance: - #### Space: ## Use Cases - [[Pointers]]