Skip to content

Commit 8dd6901

Browse files
committed
day6
1 parent f727992 commit 8dd6901

File tree

5 files changed

+85
-2
lines changed

5 files changed

+85
-2
lines changed

Day1/q1.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
# Write a program which will find all such numbers which are divisible by 7 but are not a multiple of 5,
1+
# Write a program which will find all such numbers which are divisible by 7 but are not a multiple of 5,
22
# between 2000 and 3200 (both included).The numbers obtained should be printed in a comma-separated sequence on a single line.
33

44
for i in range(2000,3201):
55
if i%7==0 and i%5!=0:
66
print(i,end=',')
7-

Day6/q22.py

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Generate a random number between 1 and 9 (including 1 and 9).
2+
# Ask the user to guess the number, then tell them whether they
3+
# guessed too low, too high, or exactly right. (Hint: remember to
4+
# use the user input lessons from the very first exercise)
5+
6+
import random
7+
8+
guess = random.randint(1, 20)
9+
10+
print("Enter a number between 1-20: ")
11+
12+
number = int(input())
13+
while guess != number:
14+
if guess < number:
15+
print("Your guess is too high, Try again!")
16+
elif guess > number:
17+
print("Your guess is too low, Try again!")
18+
19+
number = int(input("Enter a number again: "))
20+
21+
print("You got it!")

Day6/q23.py

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Implement Binary Search
2+
# Algorithm
3+
# 1.Keep track of two pointers First and Last, these are incremented or decremented to limit the part of the list to be searched.
4+
# 2.Find the middle element of the list: mid = ( length of the list )/2
5+
# 3.Compare the middle element with the value to be found
6+
# 4.Check if the middle element is lesser than the value to be found:
7+
# 5.If yes, the element must lie on the second half of the list
8+
# 6.If no, the element must lie on the first half of the list
9+
# 7.Repeat steps 1 through 3 until the element is found or the end of the list is reached.
10+
# Note:The array or list should be shorted.
11+
12+
13+
def binarySearch(ls, data):
14+
first = 0
15+
last = len(ls)-1
16+
done = False
17+
while first <= last and not done:
18+
mid = (first+last)//2
19+
if ls[mid] == data:
20+
done = True
21+
else:
22+
23+
if ls[mid]>data:
24+
last = last-1
25+
else:
26+
first = first+1
27+
return done
28+
print(binarySearch([2,5,7,8,9,11,14,16],4))

Day6/q24.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Take two lists, say for example these two:
2+
3+
# a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
4+
# b = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
5+
# and write a program that returns a list that contains only the
6+
# elements that are common between the lists (without duplicates).
7+
# Make sure your program works on two lists of different sizes.
8+
# Write this in one line of Python using at least one list
9+
# comprehension.
10+
11+
a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
12+
b = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13]
13+
14+
c = [n for n in a if n in b]
15+
print(c)

Day6/q25.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
3+
def prime(num):
4+
if num > 1:
5+
# check for factors
6+
for i in range(2, num):
7+
if (num % i) == 0:
8+
print(num, "is not a prime number")
9+
10+
break
11+
else:
12+
print(num, "is a prime number")
13+
else:
14+
print(num, "is not a prime number")
15+
16+
17+
18+
number = int(input("Enter a number to check whethe it's prime or not: "))
19+
20+
print(prime(number))

0 commit comments

Comments
 (0)