Skip to content

Instantly share code, notes, and snippets.

View MaxXxiMast's full-sized avatar

Purujit Negi MaxXxiMast

View GitHub Profile
@MaxXxiMast
MaxXxiMast / cloudSettings
Created February 5, 2021 16:42 — forked from samselikoff/cloudSettings
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-05-01T19:06:41.818Z","extensionVersion":"v3.4.3"}
#Credits to - https://gist.github.com/ghoseb/25049
#Newbie programmer
def factorial(x):
if x == 0:
return 1
else:
return x * factorial(x - 1)
print factorial(6)