Skip to content

Commit 61035c3

Browse files
committed
Completed Dictionaries and started Tuples
1 parent c7e3dd6 commit 61035c3

7 files changed

+631
-0
lines changed

.DS_Store

0 Bytes
Binary file not shown.

BigO/interviewQuestionsBigO.py

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Created by Elshad Karimov on 3/26/20.
2+
# Copyright © 2020 Elshad Karimov. All rights reserved.
3+
4+
################ Interview Questions #############
5+
#Question1
6+
def foo(array):
7+
sum = 0
8+
product = 1
9+
for i in array:
10+
sum += i
11+
for i in array:
12+
product *= i
13+
print("Sum = "+str(sum)+", Product = "+str(product))
14+
15+
ar1 = [1,2,3,4]
16+
foo(ar1)
17+
18+
#Question2
19+
20+
def printPairs(array):
21+
for i in array:
22+
for j in array:
23+
print(str(i)+","+str(j))
24+
25+
26+
#Question3
27+
def printUnorderedPairs(array):
28+
for i in range(0,len(array)):
29+
for j in range(i+1,len(array)):
30+
print(array[i] + "," + array[j])
31+
32+
33+
34+
35+
36+
#Question4
37+
def printUnorderedPairs(arrayA, arrayB):
38+
for i in range(len(arrayA)):
39+
for j in range(len(arrayB)):
40+
if arrayA[i] < arrayB[j]:
41+
print(str(arrayA[i]) + "," + str(arrayB[j]))
42+
43+
arrayA = [1,2,3,4,5]
44+
arrayB = [2,6,7,8]
45+
46+
47+
48+
#Question5
49+
def printUnorderedPairs(arrayA, arrayB):
50+
for i in range(len(arrayA)):
51+
for j in range(len(arrayB)):
52+
for k in range(0,100000):
53+
print(str(arrayA[i]) + "," + str(arrayB[j]))
54+
55+
# printUnorderedPairss(arrayA,arrayB)
56+
57+
58+
#Question6
59+
def reverse(array):
60+
for i in range(0,int(len(array)/2)):
61+
other = len(array)-i-1
62+
temp = array[i]
63+
array[i] = array[other]
64+
array[other] = temp
65+
print(array)
66+
67+
reverse(arrayA)
68+

Dictionary/dictionary1.py

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Created by Elshad Karimov on 20/04/2020.
2+
# Copyright © 2020 AppMillers. All rights reserved.
3+
4+
# Update / add an element to the dictionary
5+
6+
myDict = {'name': 'Edy', 'age': 26}
7+
myDict['address'] = 'London'
8+
print(myDict)
9+
10+
# Traverse through a dictionary
11+
12+
def traverseDict(dict):
13+
for key in dict:
14+
print(key, dict[key])
15+
16+
traverseDict(myDict)
17+
18+
# Searching a dictionary
19+
20+
21+
def searchDict(dict, value):
22+
for key in dict:
23+
if dict[key] == value:
24+
return key, value
25+
return 'The value does not exist'
26+
print(searchDict(myDict, 27))
27+
28+
# Delete or remove a dictionary
29+
30+
myDict.pop('name')
31+
32+
33+
34+
35+
# sorted method
36+
myDict = {'eooooa': 1, 'aas': 2, 'udd': 3, 'sseo': 4, 'werwi': 5}
37+
38+
print(sorted(myDict, key=len))

Dictionary/dictionaryQuiz.py

+164
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
# Created by Elshad Karimov on 26/04/2020.
2+
# Copyright © 2020 AppMillers. All rights reserved
3+
4+
# Dictionary Interview Questions
5+
6+
7+
# Q-1. What will be the output of the following code snippet?
8+
9+
a = {(1,2):1,(2,3):2}
10+
print(a[1,2])
11+
# A. Key Error
12+
# B. 1
13+
# C. {(2,3):2}
14+
# D. {(1,2):1}
15+
16+
17+
# Q-2. What will be the output of the following code snippet?
18+
19+
a = {'a':1,'b':2,'c':3}
20+
# print (a['a','b'])
21+
# A. Key Error
22+
# B. [1,2]
23+
# C. {‘a’:1,’b’:2}
24+
# D. (1,2)
25+
26+
27+
28+
# Q-3. What will be the output of the following code block?
29+
30+
fruit = {}
31+
32+
def addone(index):
33+
if index in fruit:
34+
fruit[index] += 1
35+
else:
36+
fruit[index] = 1
37+
38+
addone('Apple')
39+
addone('Banana')
40+
addone('apple')
41+
print (len(fruit))
42+
# A. 1
43+
# B. 2
44+
# C. 3
45+
# D. 4
46+
47+
48+
49+
# Q-4. What will be the output of the following code block?
50+
51+
arr = {}
52+
arr[1] = 1
53+
arr['1'] = 2
54+
arr[1] += 1
55+
56+
sum = 0
57+
for k in arr:
58+
sum += arr[k]
59+
60+
print(sum)
61+
# A. 1
62+
# B. 2
63+
# C. 3
64+
# D. 4
65+
66+
67+
68+
# Q-5. What will be the output of the following code snippet?
69+
70+
my_dict = {}
71+
my_dict[1] = 1
72+
my_dict['1'] = 2
73+
my_dict[1.0] = 4
74+
75+
sum = 0
76+
for k in my_dict:
77+
sum += my_dict[k]
78+
79+
print (sum)
80+
# A. 7
81+
# B. Syntax error
82+
# C. 3
83+
# D. 6
84+
85+
86+
87+
# Q-6. What will be the output of the following code snippet?
88+
89+
my_dict = {}
90+
my_dict[(1,2,4)] = 8
91+
my_dict[(4,2,1)] = 10
92+
my_dict[(1,2)] = 12
93+
94+
sum = 0
95+
for k in my_dict:
96+
sum += my_dict[k]
97+
98+
print (sum)
99+
print(my_dict)
100+
# A. Syntax error
101+
# B. 30
102+
# {(1, 2): 12, (4, 2, 1): 10, (1, 2, 4): 8}
103+
# C. 47
104+
# {(1, 2): 12, (4, 2, 1): 10, (1, 2, 4): 8}
105+
# D. 30
106+
# {[1, 2]: 12, [4, 2, 1]: 10, [1, 2, 4]: 8}
107+
108+
109+
110+
# Q-7. What will be the output of the following code snippet?
111+
112+
box = {}
113+
jars = {}
114+
crates = {}
115+
box['biscuit'] = 1
116+
box['cake'] = 3
117+
jars['jam'] = 4
118+
crates['box'] = box
119+
crates['jars'] = jars
120+
# print(len(crates[box]))
121+
# A. 1
122+
# B. 3
123+
# C. 4
124+
# D. Type Error
125+
126+
127+
128+
# Q-8. What will be the output of the following code block?
129+
130+
dict = {'c': 97, 'a': 96, 'b': 98}
131+
132+
for _ in sorted(dict):
133+
print (dict[_])
134+
# A. 96 98 97
135+
# B. 96 97 98
136+
# C. 98 97 96
137+
# D. NameError
138+
139+
140+
141+
# Q-9. What will be the output of the following code snippet?
142+
143+
rec = {"Name" : "Python", "Age":"20"}
144+
r = rec.copy()
145+
print(id(r) == id(rec))
146+
# A. True
147+
# B. False
148+
# C. 0
149+
# D. 1
150+
151+
152+
153+
# Q-10. What will be the output of the following code snippet?
154+
155+
rec = {"Name" : "Python", "Age":"20", "Addr" : "NJ", "Country" : "USA"}
156+
id1 = id(rec)
157+
del rec
158+
rec = {"Name" : "Python", "Age":"20", "Addr" : "NJ", "Country" : "USA"}
159+
id2 = id(rec)
160+
print(id1 == id2)
161+
# A. True
162+
# B. False
163+
# C. 1
164+
# D. Exception

0 commit comments

Comments
 (0)