Skip to content

Commit 9c70b31

Browse files
authored
Merge pull request #29 from code-for-tomorrow/Citrus716-patch-5
Added number_mystery_1 practice template
2 parents d5a2f2f + edc7c28 commit 9c70b31

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Number Mystery 1
2+
# Write a function called num_mystery that takes in 3 integers.
3+
# The function should calculate the sum of the 3 integers and
4+
# the difference between the largest integer and the smallest integer.
5+
# The function should return the product of these two integers you calculated.
6+
#
7+
# Hint: You may find it useful to use the max() and min() functions.
8+
#
9+
# Use the num_mystery function on 1, 2, 3 and print the result.
10+
# Use the num_mystery function on 5, 13, 7 and print the result.
11+
12+
# write code here

0 commit comments

Comments
 (0)