comparison grok_interview/choice.py @ 51:68fa88ac73fe

Interview prep for xAI
author June Park <parkjune1995@gmail.com>
date Mon, 15 Dec 2025 19:55:17 -0800
parents
children
comparison
equal deleted inserted replaced
46:b9a40c633c93 51:68fa88ac73fe
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 ]))