Keybase proof
I hereby claim:
- I am bonus85 on github.
- I am sindret (https://keybase.io/sindret) on keybase.
- I have a public key ASBb0hPvENR06vzQnTFcEBKeLtN38lh0FpmCH41hQvD9ywo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
def sum_of_multiples_of_3_or_5(N): | |
s = 0 | |
for i in range(N): | |
if i % 3 == 0 or i % 5 == 0: # Check if the number can be devided by 3 or 5 | |
s += i # Add the number to the total sum | |
print "The sum of all numbers that are multiples of 3 and 5 below %d is:" %N | |
print s | |
if __name__ == '__main__': |
""" | |
Inspired by: | |
https://ruslanspivak.com/lsbaws-part1/ | |
""" | |
import socket | |
import time | |
HOST = '' |
#!/usr/bin/env python | |
import gym | |
import random | |
import numpy as np | |
class Evaluator: | |
def __init__(self, env_name='CartPole-v0', max_iterations=200, render=False): | |
self.env = gym.make(env_name) | |
self.render = render |