Skip to content

Instantly share code, notes, and snippets.

@jackmaney
Created December 30, 2014 04:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jackmaney/841ca7af0027c02a6deb to your computer and use it in GitHub Desktop.
Save jackmaney/841ca7af0027c02a6deb to your computer and use it in GitHub Desktop.
Diophantus.java
package com.jackmaney.Diophantus;
import com.jackmaney.Diophantus.element.Element;
public class Diophantus {
public static void main(String[] args) {
Element e = new Element(6,0,-5);
System.out.println(e.getIrreducibleFactorizations());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment