Automatic commit performed through alias...

This commit is contained in:
Shaun Setlock
2020-05-09 23:07:26 -04:00
parent eaedde115c
commit 925cb57d70
3 changed files with 132 additions and 77 deletions

View File

@@ -11,12 +11,28 @@
# numbers from 1 to 20?
#
import decorators # Typically imported to compute execution duration of functions.
import time # Typically imported for sleep function, to slow down execution in terminal.
# Standard Imports:
# -------------------
import time # Typically imported for sleep function, to slow down execution in terminal.
import typing
import sys
import pprint
# Imports from Virtual Environment for this Project:
# ---------------------------------------------------
sys.path.append('/home/shaun/code/github/euler_project/py_euler_project/venv')
import numpy
# Imports from Modules Built for this Project:
# -----------------------------------------------
sys.path.append('/home/shaun/code/github/euler_project/py_euler_project/problems')
import decorators
# Create function that finds the next
# prime number when supplied with an
# intitial integer.
@@ -127,8 +143,10 @@ def main():
print(product)
print(set(factor_list))
print(numpy.array(common))
# print("The largest palindrome number which is a product of two numbers of length {} is {} ... ".format("foo_list","foo"))
main()
main()