79627357

Date: 2025-05-18 10:35:35
Score: 1.5
Natty:
Report link

This is what i did

def Pochhammer_func(num,pow):
    x = 1
    for k in range(pow):
        x*= num+k
        k+=1
    return x
print(Pochhammer_func(2,10))
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Łegenðarý父