Created
February 11, 2021 19:33
-
-
Save alexcmgit/c9c1ede1b8ef704ac0e655ab2baf630c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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