Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add reference link for alternating harmonic series
  • Loading branch information
Agent-A345 committed May 6, 2026
commit b5d6590b5538c2905ffc8e456fe55dab597d22f1
2 changes: 1 addition & 1 deletion maths/series/alternating_harmonic_series.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Alternating Harmonic Series Checker"""

# https://en.wikipedia.org/wiki/Alternating_harmonic_series

def is_alternate_harmonic_series(series: list) -> bool:
"""
Expand Down Expand Up @@ -30,3 +30,3 @@

if __name__ == "__main__":
sample = [1, -1 / 2, 1 / 3, -1 / 4]
Expand Down
Loading