id/email
password
forgot password | create account
about | help | code help+videos | done | prefs
CodingBat code practice

 

burns@bxscience.edu > inOrder
prev  |  next  |  chance

Complete the function which will place three random integer numbers in order. The return statement must read: return [num1, num2, num3]


inOrder(3, 2, 1) → [1, 2, 3]
inOrder(5, 6, 4) → [4, 5, 6]
inOrder(100, 200, 300) → [100, 200, 300]

...Save, Compile, Run (ctrl-enter)

def inOrder(num1, num2, num3):

Editor font size %:
Shorter output


Forget It! -- delete my code for this problem

Progress graphs:
 Your progress graph for this problem
 Random user progress graph for this problem
 Random Epic Progress Graph

Python Help

Difficulty: 100

Copyright Nick Parlante 2017 - privacy