Behavioral: a project that failed (STAR)
Two pointers: pair sum
Two pointers: palindrome check
Prerequisites — what you should know before this track
Read the code carefully
# Recurrence: T(n) = 4·T(n/2) + O(n²) # Master Theorem: a=4, b=2, d=2 → a/b^d = 4/4 = 1 → Case 2 # Answer: ? print('O(n^2 log n)')
What will the program print? Write here: