Last active
December 10, 2015 22:09
-
-
Save dermorz/4500459 to your computer and use it in GitHub Desktop.
lambda expression for spending quotient: http://wiki.teamliquid.net/starcraft2/Spending_quotient
This file contains 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
#!/usr/bin/env python | |
from math import log | |
sq = lambda u, i: 35 * (0.00137*i - log(u)) + 240 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment