MCPcopy Create free account
hub / github.com/algorithmzuo/algorithm-journey / gcd

Method gcd

src/class139/Code02_Pagodas.java:22–24  ·  view source on GitHub ↗
(int a, int b)

Source from the content-addressed store, hash-verified

20public class Code02_Pagodas {
21
22 public static int gcd(int a, int b) {
23 return b == 0 ? a : gcd(b, a % b);
24 }
25
26 public static void main(String[] args) throws IOException {
27 BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

Callers 1

mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected