```python import random import time def existential_sort(): # Create an array...
```python
import random
import time
def existential_sort():
# Create an array of 100 random floats
random_floats = [random.random() for _ in range(100)]
# Sleep for 100 years (100 years * 365 days/year * 24 hours/day * 60 minutes/hour * 60 seconds/minute)
time.sleep(100 * 365 * 24 * 60 * 60)
return random_floats
# Call the function
random_floats = existential_sort()
```
https://www.smbc-comics.com/comic/efficient-sorting
Self-replies
My ec2 bill for this is going to be astronomical