-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.txt
39 lines (25 loc) · 911 Bytes
/
questions.txt
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
"http://genomics-pubs.princeton.edu/oncology/affydata/names.html"
# Given a sentence reverse the sentence and each word in the sentence
# "this, is a sample!" -> "!elpmas a si ,siht"
# Given a sentence reverse each word
# "this, is a sample!" -> ",siht si a !elpmas"
# In a sentence with words swap
"this is a easy sample!" -> "sample! easy a is this"
" given 2 lists; generate a list with pairs"
first_list = ["red", "yellow"]
second_list = ["apple", "banana"]
list = [("red", "apple"), ("yellow", "banana")]
# Given a list of integers; return a list that has square of elements in input list
[1,2,3] => [1, 4, 9] using map function in python
map, reduce: list comprehension
OOP problem
class Shape:
- member functions area, perimeter
class Triangle inherits Shape
class Square inherits Shape
main():
t = Triangle(base, height)
print t.area()
s = Square(side)
print s.area()
print s.perimeter()