-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnail.py
108 lines (74 loc) · 2.01 KB
/
snail.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
input = [0,0,4]
climbed_per_day = input[0]
fell_per_night = input[1]
Height = input[2]
days = 0
net_climbed_per_day = (climbed_per_day) - (fell_per_night)
def snail_climbed():
if climbed_per_day == Height: # if the initial height is equal to one days worth
time = Height/climbed_per_day
return print(int(time))
while net_climbed_per_day > 0:
time = Height/net_climbed_per_day
if time > 0:
return print(int(time))
return print("FAIL")
#snail_climbed()
def snail_climbing():
distance = climbed_per_day
time = 1
if net_climbed_per_day > 0:
while distance < Height:
distance += net_climbed_per_day
time += 1
return print(int(time))
else:
return print('Fail')
#hello again
def snail_climbing1():
distance = climbed_per_day
time = 1
if net_climbed_per_day > 0:
while distance < Height:
distance += net_climbed_per_day
time += 1
return print(int(time))
else:
return print('Fail')
def median_arrays():
arr1 = [1,3,5,8]
arr2 = [2,4,6]
arr_comb = arr1 + arr2
arr_comb.sort()
number_of_terms = int((len(arr_comb)))
if number_of_terms % 2 == 0:
term1 = int((number_of_terms) /2)
term2 = term1 + 1
median = (arr_comb[term1-1] + arr_comb[term2-1]) / 2
else:
term = int((number_of_terms) / 2) + 1
median = arr_comb[term-1]
return print(median)
def reverse_string():
#str = "hello world"
#str = str[::-1]
#str = "hello world"
#rev = ""
#for i in reversed(str)
#rev += i
#return print(rev)
example_str = "Hello World!"
reversed_str = ""
for i in reversed(example_str):
reversed_str += i
return print(reversed_str)
def Knapsack():
val = [50,100,150,200]
wt = [8,16,32,40]
W = 64
return
def test():
array = [2,3,4,5,6,7,8,9]
x = array[0:8]
return print(x1)
test()