File size: 542 Bytes
14c9c2b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | from typing import List
def generate_novelty(rng: int) -> str:
# add any relevant imports inside this function
import math
# generate some cool and inspiring outputs based on rng
return "Hello world!"
def run_experiment(random_inputs: List[int]) -> List[str]:
novel_outputs = [generate_novelty(rng) for rng in random_inputs]
for output in novel_outputs:
print("Here is something new, amazing, inspiring, and profound that you might have never seen before:")
print(output)
return novel_outputs
|