Highlights
- Pro
Block or Report
Block or report felixwoestmann
Report abuse
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned
-
-
-
1
public class SomeMath {
23public static int extendedEuclideanAlgorithm(int a, int b) {
4ArrayList<Integer> g = new ArrayList<>();
5g.add(Math.max(a, b));