You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// A sequence X_1, X_2, ..., X_n is fibonacci - like if:
2
+
3
+
// n >= 3
4
+
// X_i + X_{ i + 1 } = X_{ i + 2 } for all i + 2 <= n
5
+
// Given a strictly increasing array A of positive integers forming a sequence, find the length of the longest fibonacci - like subsequence of A.If one does not exist, return 0.
6
+
7
+
// (Recall that a subsequence is derived from another sequence A by deleting any number of elements(including none) from A, without changing the order of the remaining elements.For example, [3, 5, 8] is a subsequence of[3, 4, 5, 6, 7, 8].)
8
+
9
+
// Example 1:
10
+
11
+
// Input: [1, 2, 3, 4, 5, 6, 7, 8]
12
+
// Output: 5
13
+
// Explanation:
14
+
// The longest subsequence that is fibonacci - like: [1, 2, 3, 5, 8].
15
+
16
+
// Example 2:
17
+
18
+
// Input: [1, 3, 7, 11, 12, 14, 18]
19
+
// Output: 3
20
+
// Explanation:
21
+
// The longest subsequence that is fibonacci - like:
0 commit comments