Browse Source

refactoring: Changed variable name in ld function to avoid confusion, as there is only one number

remotes/origin/feature/feature-fractions
fdai7764 11 months ago
parent
commit
ee0a5d1a4d
  1. 4
      src/main/py/logarithmic_and_expo_and_root_calculations.py

4
src/main/py/logarithmic_and_expo_and_root_calculations.py

@ -13,8 +13,8 @@ def logarithmize(first_number, second_number):
return math.log(first_number, second_number) return math.log(first_number, second_number)
def logarithmize_dualis(first_number):
return math.log2(first_number)
def logarithmize_dualis(number):
return math.log2(number)
def logarithmize_base_10(number): def logarithmize_base_10(number):

Loading…
Cancel
Save