TzurVaich commited on
Commit
711bfca
·
1 Parent(s): c4d67f6

Add GAIA level1 files

Browse files
GAIA_level1/validation/1f975693-876d-457b-a649-393859e79bf3.mp3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:200f767e732b49efef5c05d128903ee4d2c34e66fdce7f5593ac123b2e637673
3
+ size 280868
GAIA_level1/validation/389793a7-ca17-4e82-81cb-2b3a2391b4b9.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ H H H
2
+ --------------------------------
3
+ H H H H
GAIA_level1/validation/5cfb274c-0207-4aa7-9575-6ac0bd95d9b2.xlsx ADDED
Binary file (5.12 kB). View file
 
GAIA_level1/validation/65afbc8a-89ca-4ad5-8d62-355bb401f61d.xlsx ADDED
Binary file (12.4 kB). View file
 
GAIA_level1/validation/7bd855d8-463d-4ed5-93ca-5fe35145f733.xlsx ADDED
Binary file (5.29 kB). View file
 
GAIA_level1/validation/9318445f-fe6a-4e1b-acbf-c68228c9906a.png ADDED

Git LFS Details

  • SHA256: 66556e6fcc8f881d57f8a97564932eccae691076e82fa07aaa38c9f94f4c2cf0
  • Pointer size: 131 Bytes
  • Size of remote file: 134 kB
GAIA_level1/validation/99c9cc74-fdc8-46c6-8f8d-3ce2d3bfeea3.mp3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b218c951c1f888f0bbe6f46c080f57afc7c9348fffc7ba4da35749ff1e2ac40f
3
+ size 179304
GAIA_level1/validation/a3fbeb63-0e8c-4a11-bff6-0e3b484c3e9c.pptx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0487ecc2323124b56381e11f47ccc75534ed6c841671b39a0de8b86216213d76
3
+ size 388996
GAIA_level1/validation/cca530fc-4052-43b2-b130-b30968d8aa44.png ADDED

Git LFS Details

  • SHA256: daaa417b9746471ec313c3233bb63175908d49de0859b5bce99431392e45efd8
  • Pointer size: 130 Bytes
  • Size of remote file: 63.1 kB
GAIA_level1/validation/cffe0e32-c9a6-4c52-9877-78ceb4aaa9fb.docx ADDED
Binary file (17.5 kB). View file
 
GAIA_level1/validation/f918266a-b3e0-4914-865d-4faa564f1aef.py ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from random import randint
2
+ import time
3
+
4
+ class UhOh(Exception):
5
+ pass
6
+
7
+ class Hmm:
8
+ def __init__(self):
9
+ self.value = randint(-100, 100)
10
+
11
+ def Yeah(self):
12
+ if self.value == 0:
13
+ return True
14
+ else:
15
+ raise UhOh()
16
+
17
+ def Okay():
18
+ while True:
19
+ yield Hmm()
20
+
21
+ def keep_trying(go, first_try=True):
22
+ maybe = next(go)
23
+ try:
24
+ if maybe.Yeah():
25
+ return maybe.value
26
+ except UhOh:
27
+ if first_try:
28
+ print("Working...")
29
+ print("Please wait patiently...")
30
+ time.sleep(0.1)
31
+ return keep_trying(go, first_try=False)
32
+
33
+ if __name__ == "__main__":
34
+ go = Okay()
35
+ print(f"{keep_trying(go)}")