Artifact
c902a19eeb965e5c3f4d7a1f16f38044a7e50edf:
Wiki page
[Process Diary for 4th Sep] by
Jax_Star
2012-09-04 02:52:24.
D 2012-09-04T02:52:24.168
L Process\sDiary\sfor\s4th\sSep
U Jax_Star
W 511
Today I worked on the NCSS Python Challenge I completed the first question "Middle Number" in the first period and set to work on the second question "What Did Zou Saz"
Here is the code for Q1.
<i>def find_middle(a, b, c):
if a >= b:
if b >= c:
return b
elif a >= c:
return c
else:
return a
elif b >= a:
if a >= c:
return a
elif c >= b:
return b
else:
return c</i>
Z 42b25e1e38ef310bab737deca8c53ad1