Skip to content

Instantly share code, notes, and snippets.

View imAryanSingh's full-sized avatar
😊
Actualizing Concept into Reality

Aryan Singh imAryanSingh

😊
Actualizing Concept into Reality
View GitHub Profile
def main():
import sys
def power_four(n):
return n * n * n * n
def process_test_case(numbers, index, acc):
if index >= len(numbers):
return acc
if numbers[index] > 0: