Skip to content

Commit d319649

Browse files
jwala-anirudhMadhavBahl
authored andcommitted
Day 1 Completed (#162)
* Day1 Commit * Day1 Commit * Day2 Commit * Day3 Commit * Day5 Commit Until Pattern 3 * Day4 Commit TODO: Part B
1 parent f630bb8 commit d319649

File tree

6 files changed

+148
-0
lines changed

6 files changed

+148
-0
lines changed

.all-contributorsrc

+10
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,16 @@
211211
"contributions": [
212212
"doc"
213213
]
214+
},
215+
{
216+
"login": "anirudh-jwala",
217+
"name": "Anirudh Jwala",
218+
"avatar_url": "https://avatars0.githubusercontent.com/u/25549847?s=460&v=4",
219+
"profile": "https://www.linkedin.com/in/anirudh-jwala-533859135/",
220+
"contributions": [
221+
"doc",
222+
"code"
223+
]
214224
}
215225
]
216226
}

Day1/Python3/Anirudh_Day1.py

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
'''
2+
* @author: anirudh-jwala
3+
* @date: 12/01/2019
4+
'''
5+
print("Enter the value of n: ")
6+
n = int(input())
7+
for i in range(1, n+1):
8+
if i % 3 == 0 and i % 5 == 0:
9+
print("Fizz Buzz")
10+
elif i % 3 == 0:
11+
print("Fizz")
12+
elif i % 5 == 0:
13+
print("Buzz")
14+
else:
15+
print(i)

Day2/Python/Anirudh_Day2.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
'''
2+
* @author: anirudh-jwala
3+
* @date: 12/01/2019
4+
'''
5+
def reverse(string):
6+
return "".join(reversed(string))
7+
8+
print("Enter a string to be reversed: ")
9+
string = input()
10+
print(reverse(string))
11+
12+
print()
13+
14+
print("Palindrome Check")
15+
palindrome = input()
16+
checking_string = reverse(palindrome)
17+
if palindrome == checking_string:
18+
print("Given string is a palindrome")
19+
else:
20+
print("Not a palindrome")

Day3/Python/Anirudh_Day3.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
"""
2+
@author : anirudh-jwala
3+
@date : 12/01/2019
4+
"""
5+
print("Enter two strings: ")
6+
string1 = input()
7+
string2 = input()
8+
9+
counter = 0
10+
11+
# First we shall be check whether or not they are of same length
12+
13+
if len(string1) == len(string2):
14+
for i in range(len(string2)):
15+
if string1[i] != string2[i]:
16+
counter += 1
17+
print("The Hamming Distance between two strings is", counter)
18+
else:
19+
print("We require strings of equal length")

day4/Python/Anirudh_Day4.py

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
"""
2+
@author : anirudh-jwala
3+
@date : 12/01/2019
4+
"""
5+
# Finding no of vowels in given string
6+
7+
# a e i o u A E I O U are the vowels in English language
8+
9+
print("String to calculate vowels:")
10+
string = input()
11+
vowels=['a','e','i','o','u', 'A', 'E', 'I', 'O', 'U']
12+
counter = 0
13+
14+
for i in range(len(string)):
15+
if string[i] in vowels:
16+
counter += 1
17+
18+
print("No of vowels are ", counter)
19+
20+
print()
21+
22+
print("Most frequently frequently character: ")

day5/Python/Anirudh_Day5.py

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
"""
2+
@author : anirudh-jwala
3+
@date : 12/01/2019
4+
"""
5+
6+
# Pattern 1
7+
8+
'''
9+
1
10+
1 2
11+
1 2 3
12+
1 2 3 4
13+
1 2 3 4 5
14+
'''
15+
16+
print("Enter n value")
17+
n = int(input())
18+
19+
def pattern1(n):
20+
for i in range(1, n+1):
21+
for j in range(1, i+1):
22+
print(j, end=" ")
23+
print()
24+
25+
26+
# Pattern 2
27+
'''
28+
1
29+
2 3
30+
4 5 6
31+
7 8 9 10
32+
'''
33+
def pattern2(n):
34+
count = 0
35+
for i in range(1, n+1):
36+
for j in range(1, i+1):
37+
count += 1
38+
print(count, end=" ")
39+
print()
40+
41+
42+
# Pattern 3
43+
'''
44+
1
45+
1 2
46+
1 2 3
47+
1 2 3 4
48+
1 2 3 4 5
49+
1 2 3 4
50+
1 2 3
51+
1 2
52+
1
53+
'''
54+
def pattern3(n):
55+
for i in range(1, n+1):
56+
for j in range(1, i+1):
57+
print(j, end=" ")
58+
print()
59+
for i in range(n, 1, -1):
60+
for j in range(1, i):
61+
print(j, end=" ")
62+
print()

0 commit comments

Comments
 (0)