-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-typed.py
53 lines (44 loc) · 1.14 KB
/
test-typed.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
from typing import List
import datetime
# fibonacci function
def fib(n: int) -> None:
a, b = 0, 1
while b < n:
print(b, end=' ')
a, b = b, a+b
print()
# get tomorrow's date
def tomorrow() -> str:
return (datetime.date.today() + datetime.timedelta(days=1)).isoformat()
# mergesort
def mergesort(arr: List[int]) -> None:
if len(arr) > 1:
mid = len(arr) // 2
left = arr[:mid]
right = arr[mid:]
mergesort(left)
mergesort(right)
i = j = k = 0
while i < len(left) and j < len(right):
if left[i] < right[j]:
arr[k] = left[i]
i+=1
else:
arr[k] = right[j]
j+=1
k+=1
while i < len(left):
arr[k] = left[i]
i+=1
k+=1
while j < len(right):
arr[k] = right[j]
j+=1
k+=1
# username and email validation
def validate(username: str, email: str) -> bool:
if len(username) < 3:
return False
if len(email) < 3:
return False
return True