MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / min

Method min

Programs/Fibonacci.java:5–8  ·  view source on GitHub ↗
(int x, int y)

Source from the content-addressed store, hash-verified

3
4class 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,

Callers 4

fibMonaccianSearchMethod · 0.95
exponentialSearchMethod · 0.80
fordFulkersonMethod · 0.80
pattern9Method · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected