Start with pointers at both ends of a sorted array. Compare the sum with target:
• Sum > Target? Move Right-- (decrease sum)
• Sum < Target? Move Left++ (increase sum)
• Sum = Target? Victory! 🎉
Great job using the two-pointer technique!