Created
September 26, 2016 15:43
-
-
Save eloyz/6ef5b5217e26d1f9ff23b0b00bdfeb04 to your computer and use it in GitHub Desktop.
Revisions
-
eloyz revised this gist
Sep 26, 2016 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ #!/usr/bin/env python3.5 # Brzycki in Python # 1 Rep Max Formula def brzycki(weight, reps): """One rep max formula based on weight.""" return int(weight) * (36 / (37 - int(reps))) -
eloyz created this gist
Sep 26, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ #!/usr/bin/env python3.5 # Brzycki in Python # One Rep Max Formula def brzycki(weight, reps): """1 Rep Max formula based on weight.""" return int(weight) * (36 / (37 - int(reps)))