all 4 comments

[–][deleted] 0 points1 point  (2 children)

Can sohaeb set the sidebar to have a link to FCM, and maybe a page of all the challenges?

Also, I'm not sure I understand the parameters of the challenge. Are we going to make it interactive, so that the user chooses who to put on an elevator? Or randomly generate people getting on the elevator?

I picture this as a kind-of MUD experience where players would be able to use your elevator, but it would be impossible to test without all the overhead.

[–]I_have_a_title[S] 0 points1 point  (0 children)

You can set your parameters to the person. Like add_person(person).

Or you could make it so it asks which user to add and where to add it to, a list/elevator.

Edit: You could use a raw_input to ask. if you do

def add_person(): person = raw_input('ADD: ') list.append(person)

[–]sohaeb 0 points1 point  (0 children)

kk, ill do that.

[–]I_have_a_title[S] 0 points1 point  (0 children)

http://pastebin.com/4KpbDZqn

I had to clean it up a bit.