Skip to content

My solution to the problem #244

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 22, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions Project Euler/Problem 01/sol4.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
def mulitples(limit):
xmulti = []
zmulti = []
z = 3
x = 5
temp = 1
while True:
result = z * temp
if (result < limit):
zmulti.append(result)
temp += 1
continue
else:
temp = 1
break
while True:
result = x * temp
if (result < limit):
xmulti.append(result)
temp += 1
continue
else:
temp = 1
break
return (sum(zmulti) + sum(xmulti))






print (mulitples(100))
13 changes: 13 additions & 0 deletions Project Euler/Problem 02/sol2.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
def fib(n):
ls = []
a,b = 0,1
n += 1
for i in range(n):
if (b % 2 == 0):
ls.append(b)
else:
pass
a,b = b, a+b
print (sum(ls))
return None
fib(10)