Skip to content
Open
Changes from all commits
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
2 changes: 0 additions & 2 deletions Part-1/Hackerrank/Super factorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@
def part1():
n = ass
total = 1
total_1 = total
count = n
while count > 0 :
count -= 1
total *= n
n -= 1
total_1 = total


ass = int(input())
Expand Down