Browse Source

refactoring: changed function parameter for further clarity

remotes/origin/feature/feature-fractions
fdai7783 11 months ago
committed by fdai7764
parent
commit
f8523832d5
  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(first_number):
return math.sqrt(first_number)
def sqrt(root_of):
return math.sqrt(root_of)
def potentiate(first_number, second_number):

Loading…
Cancel
Save