Skip to content

Commit fcfd552

Browse files
committed
polishing v3
1 parent 6877842 commit fcfd552

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

Easy-ones/Math-Power.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Take two numbers from the users. Calculate the result of second number power of
88
To power, you will need to use two asterisks symbols (two multiplication symbols). For example 4 to the power 3 will be
99

1010

11-
result = 4**3
11+
`result = 4**3`
1212

1313
## Solution
1414
```python

Easy-ones/Random-Number.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Create a random number between 0 to 10
77
## Hints
88
To create a random number, you have to import a built-in library named random. And then you can call the randint method on it
99

10-
##### result = 4**3
10+
`result = 4**3`
1111

1212
## Solution
1313

Easy-ones/Temporary-variable.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ How would you swap two variables?
6565
Use temp variable to swap two variables. <br>
6666

6767
&nbsp;
68-
[![Next Page](../assets/next-button.png)](../README.md)
68+
[![Next Page](../assets/next-button.png)](../Number-Related/max-of-two.md)
6969
&nbsp;
7070

7171
tags: `programmig-hero` `python` `python3` `problem-solving` `programming` `coding-challenge` `interview` `learn-pyton` `python-tutorial` `programming-exercises` `programming-challenges` `programming-fundamentals` `programming-contest` `python-coding-challenges` `python-problem-solving`

Loop-Related/Sum-of-elements.md

+4
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,7 @@ What is the shortcut way to sum all the numbers in a list?
6262

6363
Use the sum function to sum all the numbers in a list.
6464

65+
66+
&nbsp;
67+
[![Next Page](../assets/next-button.png)](Largest-element-of-a-list.md)
68+
&nbsp;

Number-Related/Sum-of-digits.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ What is the shortcut way to sum all the numbers in a list?
6161
Use the sum function to sum all the numbers in a list.
6262

6363
&nbsp;
64-
[![Next Page](../assets/next-button.png)](../Loop-Related/Coin-sum.md)
64+
[![Next Page](../assets/next-button.png)](../Loop-Related/Sum-of-elements.md)
6565
&nbsp;
6666

6767
tags: `programmig-hero` `python` `python3` `problem-solving` `programming` `coding-challenge` `interview` `learn-pyton` `python-tutorial` `programming-exercises` `programming-challenges` `programming-fundamentals` `programming-contest` `python-coding-challenges` `python-problem-solving`

0 commit comments

Comments
 (0)