Use the two-pointer technique on a sorted list [1, 3, 5, 7, 9, 11] to find if any two numbers sum to
A medium Python interview practice problem on DataDriven. Write and execute real python code with instant grading.
- Domain
- Python
- Difficulty
- medium
Problem
Use the two-pointer technique on a sorted list [1, 3, 5, 7, 9, 11] to find if any two numbers sum to 12. Use left starting at 0 and right at the end, moving inward. Print the pair found.
Practice This Problem
Solve this Python problem with real code execution. DataDriven runs your Python code in a real environment and grades it automatically.