Support Forums

Full Version: Programming challenge, winner gets $$$
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Ok so program is pretty simple, requirements are pretty, id do it myself, but currently I have faar too much on my plate to do this myself, winner gets 50 bucks.

What it has to do:

Take a list of words copy and pasted,
compare it to another list that can be copy and pasted in on a different box,

compare the two, and display a list of all like items in a different box.

example:

box 1:

box 2:

output box:
like i said, VERY simple, moneys good, paypal is my preferred method of transfer.
I can do this. Mind contacting me over msn?
MarikHF@hotmail.com
Thanks.
(11-04-2010, 05:32 AM)Marik™ Wrote: [ -> ]I can do this. Mind contacting me over msn?
MarikHF@hotmail.com
Thanks.

cant sorry, justmake sure it works in windows, Id hurry too if I were you, it seems theres others that want the money as well, its a first come first serve im afraid.
It will work on Windows (All OS). Just contact me on MSN for the payment.
(11-04-2010, 03:20 PM)Marik™ Wrote: [ -> ]It will work on Windows (All OS). Just contact me on MSN for the payment.

pm me a link to it please.
I assume this is done? Wish I was a member when this too place!!
It will work on Windows (All OS). Just contact me on MSN for the payment.
IF This is still undone, just drop me a pm and i'll do it tomorrow ! thanks
(11-29-2010, 08:08 PM)KoBE Wrote: [ -> ]I assume this is done? Wish I was a member when this too place!!

I'm wondering the same thing here.
Code:
box1 = ["car", "truck", "dolphin", "dragon", "penguin"]
box2 = ["truck", "pelican", "grenade", "turtle", "commando", "egg", "dolphin"]
output_box = []

for io in box1:
    for it in box2:
        if io == it:
            output_box.append(io)
    
print(output_box)

Quote:http://pastebin.com/4gMR7gVJ


How do you prefer to send me the 50 bucks then?
Pages: 1 2