diff --git a/13/5 - Product b/13/5 - Product new file mode 100644 index 0000000..316fe03 --- /dev/null +++ b/13/5 - Product @@ -0,0 +1,4 @@ +def prod(L): + for i in L[1:]: + L[0] *= i + return L[0]