IST_Individual_Task

Artifact [ae6bd38163]
Login

Artifact ae6bd381633fa43cad9f46a5fac488672e761962:

Wiki page [Process Diary for 4th Sep] by Jax_Star 2012-09-04 02:53:12.
D 2012-09-04T02:53:12.831
L Process\sDiary\sfor\s4th\sSep
P c902a19eeb965e5c3f4d7a1f16f38044a7e50edf
U Jax_Star
W 592
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" </br>

Here is the code for Q1.</br>
<i>def find_middle(a, b, c): </br>
    if a >= b:</br>
        if b >= c:</br>
            return b</br>
        elif a >= c:</br>
            return c</br>
        else:</br>
            return a</br>
    elif b >= a:</br>
        if a >= c:</br>
            return a</br>
        elif c >= b:</br>
            return b</br>
        else:</br>
            return c</i>
Z f731236d0437518bc0121f4a941ffab0