annotate grok_interview/choice.py @ 68:70ca1d99f3fd
Mimicing what tsoding did for his video. Kinda cool.
| author |
June Park <parkjune1995@gmail.com> |
| date |
Thu, 25 Dec 2025 20:03:51 -0800 |
| parents |
68fa88ac73fe |
| children |
|
| rev |
line source |
|
51
|
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 ]))
|