Given a strictly increasing array of positive integers arr, a subsequence is considered Fibonacci-like if it has at least three elements and, starting from the third element, every element is the sum of the two preceding ones. In other words, for a subsequence [X₁, X₂, ..., Xₖ] (with k ≥ 3), it must hold that Xᵢ + Xᵢ₊₁ = Xᵢ₊₂ for all 1 ≤ i ≤ k-2.
Task
Implement a function that takes an array of positive integers and returns the length of the longest Fibonacci-like subsequence within the array. If no such subsequence exists, return 0.
Input
arr
, where 1 ≤ length of arr ≤ 1000.Output
arr
. If no valid Fibonacci-like subsequence exists, return 0.Example
Input: arr = [1, 3, 4, 7, 11, 18, 29]
Output: 6
Explanation: The subsequence [3, 4, 7, 11, 18, 29] is Fibonacci-like because:
3 + 4 = 7, 4 + 7 = 11, 7 + 11 = 18, and 11 + 18 = 29.
Notes