Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5abb9eb

Browse files
committedOct 12, 2024·
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 671c995 commit 5abb9eb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎maths/Egyptian Fraction.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ def egyptian_fraction(numerator, denominator):
77
denominator *= x
88
return fractions
99

10+
1011
num, den = 6, 14
1112
print(f"Egyptian Fraction of {num}/{den}: {egyptian_fraction(num, den)}")

0 commit comments

Comments
 (0)
Please sign in to comment.