mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-23 21:11:08 +00:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
32634eff5a
commit
7800f1e645
|
@ -37,4 +37,6 @@ def sum_of_ap_series(a: int, d: int, n: int) -> int:
|
|||
|
||||
# Formula for the sum of an AP series: S_n = n/2 * (2a + (n-1) * d)
|
||||
return n * (2 * a + (n - 1) * d) // 2
|
||||
|
||||
|
||||
# Reeka
|
||||
|
|
Loading…
Reference in New Issue
Block a user