Skip to content

Commit bf86b7c

Browse files
committed
polishing v1
1 parent 2b1d62e commit bf86b7c

29 files changed

+233
-8
lines changed

Harder/Generate-Sentences.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,8 @@ It's simple...Just run three for loops for three lists you have, each one under
2626
Damn easy, isn't it?
2727

2828

29+
 
30+
[![Next Page](assets/next-button.png)](..README.md)
31+
 
32+
33+
###### tags: `programmig-hero` `python` `float` `int` `math`

Harder/Password-generator.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,10 @@ print('Your new password: ', new_password)
4949
The solution is rather simple. We imported the random module and the string module. Then we created a long string by joining all ascii_letters, digits and special characters.
5050

5151
For that, we ran a for loop. In the loop, we select a random letter from the all_chars. To select a random character, we used random.choice. Then we add the random character to the password.
52+
53+
54+
 
55+
[![Next Page](assets/next-button.png)](Password-with-requirements.md)
56+
 
57+
58+
###### tags: `programmig-hero` `python` `float` `int` `math`

Harder/Password-with-requirements.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,9 @@ Make sense?
5353

5454
Keep going. Only a few more left. I am sure you can do it
5555

56+
57+
 
58+
[![Next Page](assets/next-button.png)](Permutations.md)
59+
 
60+
61+
###### tags: `programmig-hero` `python` `float` `int` `math`

Harder/Permutations.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,11 @@ That’s why we put current in a list as well so that it becomes a list as well.
8989

9090
This will create [3, 2, 1]. That’s why we did [current] + p to make the final permutation.
9191

92-
This code is harder. It will take a few practices to become comfortable with it.
92+
This code is harder. It will take a few practices to become comfortable with it.
93+
94+
95+
 
96+
[![Next Page](assets/next-button.png)](Generate-Sentences.md)
97+
 
98+
99+
###### tags: `programmig-hero` `python` `float` `int` `math`

Harder/Simple-Calculator.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,8 @@ Then we have if-elif-else. And based on the operation, we call the right method
6363
That’s it.
6464

6565

66+
 
67+
[![Next Page](assets/next-button.png)](Password-generator.md)
68+
 
69+
70+
###### tags: `programmig-hero` `python` `float` `int` `math`

Medium/Armstrong-number.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,10 @@ return result
7878
```
7979

8080

81+
 
82+
[![Next Page](../assets/next-button.png)](Greatest-common-divisor.md)
83+
 
84+
85+
###### tags: `programmig-hero` `python` `float` `int` `math`
86+
87+

Medium/Check-palindrome.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,10 @@ The problem might sound complicated at the beginning. However, if you know the t
3636

3737
So, the more you explore, the more you try, the more shortcut trick you will master.
3838

39+
40+
 
41+
[![Next Page](../assets/next-button.png)](Dictionary-of-cubes.md)
42+
 
43+
44+
###### tags: `programmig-hero` `python` `float` `int` `math`
45+

Medium/Dictionary-of-cubes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,10 @@ print('Your sum of cubes are: ', sum)
4848
## Take Away
4949
Sum of a series might have an easier formula.
5050

51+
 
52+
[![Next Page](../assets/next-button.png)](Armstrong-number.md)
53+
 
54+
55+
###### tags: `programmig-hero` `python` `float` `int` `math`
56+
5157

Medium/Greatest-common-divisor.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,14 @@ b = int(input("Enter second number:"))
6969

7070
gcd = math.gcd(a,b)
7171
print(gcd)
72-
```
72+
```
73+
74+
75+
76+
 
77+
[![Next Page](../assets/next-button.png)](Least-Common-Multiple.md)
78+
 
79+
80+
###### tags: `programmig-hero` `python` `float` `int` `math`
81+
82+

Medium/Least-Common-Multiple.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,12 @@ In the while loop, if we can not divide the lcm by the first number or the secon
4444
That's it.
4545

4646
It's actually much easier than it seems.
47+
48+
49+
50+
 
51+
[![Next Page](../assets/next-button.png)](README.md)
52+
 
53+
54+
###### tags: `programmig-hero` `python` `float` `int` `math`
55+

0 commit comments

Comments
 (0)