Skip to content

Instantly share code, notes, and snippets.

View ZaakirHussain5's full-sized avatar

Zaakir Hussain ZaakirHussain5

View GitHub Profile
@ZaakirHussain5
ZaakirHussain5 / challenge.py
Created July 14, 2023 13:21
HENNGE Admission Challenge
def get_inputs():
input()
inputs = list(map(int, input().split()))
return inputs
def print_outputs(inputs):
output = sum(map(lambda i: i**2 if i>0 else 0 , inputs))
print(output)
def repeat(fn,times,inputs):