Skip to content

Instantly share code, notes, and snippets.

@Shinichi-Nakagawa
Created November 29, 2014 05:41
Show Gist options
  • Save Shinichi-Nakagawa/d0c9a6851ca134d4bb37 to your computer and use it in GitHub Desktop.
Save Shinichi-Nakagawa/d0c9a6851ca134d4bb37 to your computer and use it in GitHub Desktop.
def to_pythagoras_data(r, ra, g)
# r :得点
# ra:失点
# g :試合数
return (g.to_f * (r.to_f ** 2 / (r.to_f ** 2 + ra.to_f ** 2))).to_i
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment