Skip to content

Instantly share code, notes, and snippets.

@alexcmgit
Created February 11, 2021 19:33
Show Gist options
  • Save alexcmgit/c9c1ede1b8ef704ac0e655ab2baf630c to your computer and use it in GitHub Desktop.
Save alexcmgit/c9c1ede1b8ef704ac0e655ab2baf630c to your computer and use it in GitHub Desktop.
double ruleOfThree({double x1, double y1, double x2}){
final y2 = x2 * y1 / x1;
return y2;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment