comparison async_multi_threads/choice.py @ 69:551d9fc0a2ba

Updated wrong names.
author June Park <parkjune1995@gmail.com>
date Thu, 25 Dec 2025 20:07:46 -0800
parents
children
comparison
equal deleted inserted replaced
68:70ca1d99f3fd 69:551d9fc0a2ba
1 import random
2
3 print(random.choice([
4 'Bucket questions',
5 'Inference Questions',
6 'Bank Account',
7 'Job Schedular',
8 'Alphabet Word Search II',
9 'Least Recently Used (LRU) Cache Implementation',
10 'In-Memory Key-Value Store with Nested Transactions',
11 ]))