about summary refs log tree commit diff
path: root/users/wpcarro/scratch/facebook/top-scores.py
diff options
context:
space:
mode:
Diffstat (limited to 'users/wpcarro/scratch/facebook/top-scores.py')
-rw-r--r--users/wpcarro/scratch/facebook/top-scores.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/users/wpcarro/scratch/facebook/top-scores.py b/users/wpcarro/scratch/facebook/top-scores.py
new file mode 100644
index 0000000000..c8a10ae5f1
--- /dev/null
+++ b/users/wpcarro/scratch/facebook/top-scores.py
@@ -0,0 +1,20 @@
+import random
+from collections import deque
+
+def sorted(xs):
+    result = [0] * 100
+    for x in xs:
+        result[x - 1] += 1
+
+    answer = deque()
+    for i in range(len(result)):
+        x = result[i]
+        for _ in range(x):
+            answer.appendleft(i + 1)
+
+    return list(answer)
+
+scores = [random.choice(range(70, 100)) for _ in range(20)]
+print(scores)
+result = sorted(scores)
+print(result)