Skip to content

Commit 843f067

Browse files
committed
Day10
1 parent 1a72f0e commit 843f067

File tree

3 files changed

+55
-0
lines changed

3 files changed

+55
-0
lines changed

Day10/q37.py

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Python program to convert an integer to a roman numeral
2+
3+
4+
class num_to_rom:
5+
def int_to_Rom(self, num):
6+
val = [
7+
1000, 900, 500, 400,
8+
100, 90, 50, 40,
9+
10, 9, 5, 4,
10+
1
11+
]
12+
rom = [
13+
"M", "CM", "D", "CD",
14+
"C", "XC", "L", "XL",
15+
"X", "IX", "V", "IV",
16+
"I"
17+
]
18+
roman_num = ''
19+
i = 0
20+
while num > 0:
21+
for _ in range(num//val[i]):
22+
roman_num += rom[i]
23+
num -= val[i]
24+
i += 1
25+
return roman_num
26+
27+
28+
print(num_to_rom().int_to_Rom(1))
29+
print(num_to_rom().int_to_Rom(4000))

Day10/q38.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# python program to check number is perfect square or not
2+
3+
4+
def is_perfect_square(n):
5+
x = n//2
6+
y = set([x])
7+
while x*x != n:
8+
x = (x+(n//x))//2
9+
if x in y:
10+
return False
11+
y.add(x)
12+
13+
return True
14+
15+
16+
print(is_perfect_square(8))
17+
print(is_perfect_square(9))
18+
print(is_perfect_square(100))

Day10/q39.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Python program to find missing number in a list
2+
3+
4+
def missing_number(num_list):
5+
return sum(range(num_list[0], num_list[-1]+1))-sum(num_list)
6+
7+
8+
print(missing_number([1, 2, 3, 4, 6, 7, 8]))

0 commit comments

Comments
 (0)