diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/grok_interview/choice.py	Mon Dec 15 19:55:17 2025 -0800
@@ -0,0 +1,11 @@
+import random
+
+print(random.choice([
+    'Bucket questions',
+    'Inference Questions',
+    'Bank Account',
+    'Job Schedular',
+    'Alphabet Word Search II',
+    'Least Recently Used (LRU) Cache Implementation',
+    'In-Memory Key-Value Store with Nested Transactions',
+]))