(int x, int y)
| 27 | // Utility function to find minimum |
| 28 | // of two elements |
| 29 | public static int min(int x, int y) |
| 30 | { return (x <= y)? x : y; } |
| 31 | |
| 32 | /* Returns index of x if present, else returns -1 */ |
| 33 | public static int fibMonaccianSearch(int arr[], |
no outgoing calls
no test coverage detected