Skip to content

Commit f4f0088

Browse files
authored
Format Document
1 parent 5fdaba0 commit f4f0088

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

ARKA.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
def sumOfSeries(n):
2-
x = (n * (n + 1) / 2)
3-
return (int)(x * x)
1+
def sumOfSeries(n):
2+
x = n * (n + 1) / 2
3+
return (int)(x * x)
44

55

6-
7-
# Driver Function
6+
# Driver Function
87
n = 5
9-
print(sumOfSeries(n))
8+
print(sumOfSeries(n))

0 commit comments

Comments
 (0)