-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasics.py
179 lines (127 loc) · 3.77 KB
/
basics.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
import random
def addstr(str):
return '"Hello, ' + str + '!"'
# userStr = input("Enter some string: ")
userStr = "world"
print(addstr(userStr), "\n")
def sum(numList):
sum = 0
for num in range(len(numList)):
sum += numList[num]
return sum
def multiply(numList):
prod = 1
for num in range(len(numList)):
prod *= numList[num]
return prod
# def userInput():
# userNum = []
# num = int(input("Enter number of elements : "))
# for i in range(0, num):
# elem = int(input())
# userNum.append(elem)
# return userNum
# userNum = userInput()
userNum = [1, 5, 3, 4]
print(sum(userNum), "\n")
print(multiply(userNum), "\n")
def revStr(str):
stringlength = len(str)
slicedString = str[stringlength::-1]
return slicedString
print(revStr(userStr), "\n")
def isPalindrome(str):
for i in range(0, len(str)//2):
if str[i] != str[len(str)-i-1]:
return False
return True
userPal = "devopspoved"
res = isPalindrome(userPal)
if (res):
print("True\n")
else:
print("False\n")
def histogram(numList):
chart = ""
for i in range(len(numList)):
chart += numList[i] * "*" + "\n"
return chart
print(histogram(userNum), "\n")
def caesarCipher(str, key):
result = ""
for i in range(len(userStr)):
char = userStr[i]
# Encrypt uppercase characters
if (char.isupper()):
result += chr((ord(char) + key - 65) % 26 + 65)
# Encrypt lowercase characters
else:
result += chr((ord(char) + key - 97) % 26 + 97)
return result
# userStr = input("Enter some string to cipher: ")
# userKey = input("Enter key to shift: ")
userStr = "vwxyz"
userKey = 5
print("Text : " + userStr)
print("Shift : " + str(userKey))
print("Cipher: " + caesarCipher(userStr, userKey) + "\n")
def diagonalReverse(arr):
new_arr = []
rows = len(arr)
cols = len(arr[0])
new_arr = [[None for i in range(rows)] for j in range(cols)]
for i in range(rows):
for j in range(cols):
new_arr[j][i] = arr[i][j]
return new_arr
userArr = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
print(diagonalReverse(userArr), "\n")
def game(num1, num2):
value = random.randint(int(num1), int(num2))
userNum = int(input("Enter number to guess: "))
while userNum != value:
if userNum < value:
print("Your guess is low!")
userNum = int(input("Enter another number to guess: "))
elif userNum > value:
print("Your guess is high!")
userNum = int(input("Enter another number to guess: "))
else:
print("You guess is right, congratulations!")
# why doesn't prints on screen?
break
return value
# num1 = input("Enter start number: ")
# num2 = input("Enter finish number: ")
# print(game(num1, num2))
# print("\n")
def bracketsCheck(str):
pairs = {"[": "]"}
stack = []
for ch in str:
if ch in "[":
stack.append(ch)
elif stack and ch == pairs[stack[-1]]:
stack.pop()
else:
return "Not OK"
return "OK"
test_cases = ("[[[]]]", "[[[]]]]", "[[[[[[]]]]]]]]", "[[]]", "[]][[]")
for str in test_cases:
print(str, bracketsCheck(str))
print("\n")
def charFreq(str):
all_freq = {}
for i in str:
if i in all_freq:
all_freq[i] += 1
else:
all_freq[i] = 1
return all_freq
print(charFreq("abbabcbdbabdbdbabababcbcbabc"), "\n")
def decToBin(num):
if num > 1:
decToBin(num // 2)
print(num % 2, end=" ")
decToBin(23)
print("\n")