Write a Python function, named “find_fibonacci”, which accepts a list as input. The function will find and return the elements that satisfy the Fibonacci property:
Example : Input list : [2, 8, 4, 6, 1, 7, 8, 4, 7, 9, 4, 13]
Returned list : [[6,1,7], [1,7,8], [9,4,13]]
Comments