Skip to content

Instantly share code, notes, and snippets.

View ZTGeng's full-sized avatar

Zhitao Geng ZTGeng

  • Bay Area
View GitHub Profile
import java.util.Arrays;
/**
* 简单测试。
*/
public class Test {
public static void main(String[] args) {
Double[] terms = new Double[] {8.0, null, 13.0, null, null, null, null, null, 8.0, null, null, 6.0};
double[] solution = FourVariablesLinearEquations.solution(terms);