Browse Source

refactoring: renamed function parameters to stay consistent with naming scheme

remotes/origin/feature/feature-fractions
fdai7783 11 months ago
committed by fdai7764
parent
commit
29165c63c2
  1. 4
      src/main/py/logarithmic_and_expo_and_root_calculations.py

4
src/main/py/logarithmic_and_expo_and_root_calculations.py

@ -1,8 +1,8 @@
import math
def sqrt(root_of):
return math.sqrt(root_of)
def sqrt(number):
return math.sqrt(number)
def potentiate(first_number, second_number):

Loading…
Cancel
Save