Skip to content

Commit 907eb0f

Browse files
vishalshirke7MadhavBahl
authored andcommitted
Python solution for day 16 (#161)
* Add @vishalshirke7 as a contributor * Update @vishalshirke7 as a contributor * Added python solutions for Day 4 * modified readme * Add @Vishal * reverted adding as a contributor * Update README.md * Update CONTRIBUTORS.md * Update CONTRIBUTORS.md * Added python solutions for day 7 * Edited python solution for day 7 * Edited python solution for day 7 * Added python solution for day 10 * Changed readme for day 10 * minor changes * Python solution for day 11 * Python solution for day10 and day11 * Added python solution for day 13 * python solution for day 14 * Python solution for day 16
1 parent d319649 commit 907eb0f

File tree

4 files changed

+78
-1
lines changed

4 files changed

+78
-1
lines changed

day14/Python/sumdigits.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
"""
2+
@author : vishalshirke7
3+
@date : 08/01/2019
4+
"""
5+
6+
7+
def sum_of_digits(n):
8+
if n <= 0:
9+
return n
10+
else:
11+
return (n % 10) + sum_of_digits(n // 10)
12+
13+
14+
print(sum_of_digits(int(input())))

day14/README.md

+22-1
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,29 @@ public class SumDigits {
9090
}
9191
```
9292

93-
#### [Solution](./Java/Sumrec.java)
93+
### Python Implementation
94+
95+
#### [Solution by @vishalshirke7](./Python/sumdigits.py)
96+
```python
97+
98+
"""
99+
@author : vishalshirke7
100+
@date : 08/01/2019
101+
"""
102+
103+
104+
def sum_of_digits(n):
105+
if n <= 0:
106+
return n
107+
else:
108+
return (n % 10) + sum_of_digits(n // 10)
94109

110+
111+
print(sum_of_digits(int(input())))
112+
113+
114+
#### [Solution](./Java/Sumrec.java)
115+
```
95116
/**
96117
* @date 08/01/19
97118
* @author SPREEHA DUTTA

day16/Python/tower_hanoi.py

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
"""
2+
@author : vishalshirke7
3+
@date : 10/01/2019
4+
"""
5+
6+
7+
def towerhanoi(n, from_rod, to_rod, aux_rod):
8+
if n == 1:
9+
print("Move disk 1 from rod %d to rod %d"%(from_rod, to_rod))
10+
return
11+
towerhanoi(n - 1, from_rod, aux_rod, to_rod)
12+
print("Move disk 1 from rod %d to rod %d"%(from_rod, to_rod))
13+
towerhanoi(n - 1, aux_rod, to_rod, from_rod)
14+
15+
16+
no_of_disks = int(input())
17+
towerhanoi(no_of_disks, 'A', 'C', 'B')

day16/README.md

+25
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,29 @@ console.log ('/* ===== for 2 disks ===== */');
4444
towerOfHanoi (2, 'A', 'C', 'B');
4545
console.log ('\n/* ===== for 3 disks ===== */');
4646
towerOfHanoi (3, 'A', 'C', 'B');
47+
```
48+
49+
## Python Implementation
50+
51+
### [Solution](./Python/tower_hanoi.py)
52+
```python
53+
54+
"""
55+
@author : vishalshirke7
56+
@date : 10/01/2019
57+
"""
58+
59+
60+
def towerhanoi(n, from_rod, to_rod, aux_rod):
61+
if n == 1:
62+
print("Move disk 1 from rod %d to rod %d"%(from_rod, to_rod))
63+
return
64+
towerhanoi(n - 1, from_rod, aux_rod, to_rod)
65+
print("Move disk 1 from rod %d to rod %d"%(from_rod, to_rod))
66+
towerhanoi(n - 1, aux_rod, to_rod, from_rod)
67+
68+
69+
no_of_disks = int(input())
70+
towerhanoi(no_of_disks, 'A', 'C', 'B')
71+
4772
```

0 commit comments

Comments
 (0)