Mercurial
comparison grok_interview/choice.py @ 60:d64a8c189a77
Merged
| author | June Park <me@mrjunejune.com> |
|---|---|
| date | Sat, 20 Dec 2025 13:56:01 -0500 |
| parents | 68fa88ac73fe |
| children |
comparison
equal
deleted
inserted
replaced
| 50:983769fba767 | 60:d64a8c189a77 |
|---|---|
| 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 ])) |