Skip to content

Commit 9a84243

Browse files
authored
Update README.md
1 parent 09c4af5 commit 9a84243

File tree

1 file changed

+4
-4
lines changed
  • exercises/006.1-square_value_of_number

1 file changed

+4
-4
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# `006.1` square value of number
22

3-
## 📝 Instructions
3+
## 📝 Instructions:
44

55
1. Write a function called `square()` that calculates the square value of a number.
66

7-
## Example input:
7+
## 📎 Example input:
88

99
```py
1010
square(6)
1111
```
1212

13-
## Example output:
13+
## 📎 Example output:
1414

1515
```py
1616
36
1717
```
1818

1919
## 💡 Hint:
2020

21-
+ Using the `**` operator
21+
+ Using the `**` operator.

0 commit comments

Comments
 (0)