This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gym | |
from gym import wrappers | |
env = gym.make('CartPole-v0') | |
env = wrappers.Monitor(env, '/tmp/cartpole-experiment-1') | |
for i_episode in range(200): | |
observation = env.reset() | |
for t in range(1000): | |
env.render() | |
print(observation) | |
action = env.action_space.sample() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
n, m = input().strip().split(' ') | |
n, m = [int(n), int(m)] | |
id = [i for i in range(n+1)] | |
def rootParent(i): | |
commonGeneration = [] | |
while(id[i] is not i): | |
# print(i, id[i]) | |
commonGeneration.append(i) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ella Fitzgerald & Louis Armstrong - "Gee Baby, Ain't I Good To You" | |
Ella Fitzgerald & Louis Armstrong - "Learnin' The Blues" (test shouty mids on trumpet) | |
Diana Krall - "Maybe, You'll BeThere" (sibilance test on 'Ssss') | |
Diana Krall - "Baby, All The Time" | |
Van Halen - "Hot For Teacher" (test of busy drum intro) | |
Metallica - "Nothing Else Matters" | |
Dream Theater - "Pull Me Under" | |
Tourniquet - "The Hand Trember" | |
Shania Twain - "No one needs to know" | |
Tim McGraw - "She Was Mine For A Little While" |