(int x, int y)
| 3 | |
| 4 | class Fibonacci { |
| 5 | public static int min(int x, int y) |
| 6 | { |
| 7 | return (x <= y) ? x : y; |
| 8 | } |
| 9 | |
| 10 | /* Returns index of x if present, else returns -1 */ |
| 11 | public static int fibMonaccianSearch(int arr[], int x, |
no outgoing calls
no test coverage detected