NCSS Challenge
Forum » Discussion / News etc. » NCSS Challenge
started by: JGatJGat
on: 1211790008|%e %b %Y, %H:%M %Z|agohover
number of posts: 2
rss icon RSS: new posts
summary:
5 Week Python Programming course
NCSS Challenge
JGatJGat 1211790008|%e %b %Y, %H:%M %Z|agohover

Python is the best language in the world.

Any who doubt shall die.

def qsort(L):
    if L == []: return []
    return qsort([x for x in L[1:] if x< L[0]]) + L[0:1] + qsort([x for x in L[1:] if x>=L[0]])

How many lines would this be in C++, huh?

If you would like to participate in a 5-week web-based course next term to learn the python programming language and how awesome it is, then sign up for the annual National Computer Science School (NCSS) Challenge. I did it last year and came 6th, along with Ben Trubshaw who came 8th, and others. And I will almost certainly do it again this year.

I think the school will pay the entrance fee, which I will confirm later on, so don't worry about that…

Seriously, Python is awesome, and don't let anyone tell you otherwise. Really. Register at http://challenge.ncss.edu.au/ . I recommend it to all.

Oh, and you don't need to know any programming theory before hand. It'll teach you it all. Questions welcome.

..J

unfold NCSS Challenge by JGatJGat, 1211790008|%e %b %Y, %H:%M %Z|agohover
Re: NCSS Challenge
mcfar54mcfar54 1211883353|%e %b %Y, %H:%M %Z|agohover

I would like to agree with this. Python is not that bad a programming language and it allows more freedom in what you do. I am considering doing NCSS this year and I would personally encourage anyone to take up this opportunity.

unfold Re: NCSS Challenge by mcfar54mcfar54, 1211883353|%e %b %Y, %H:%M %Z|agohover
new post
Unless stated otherwise Content of this page is licensed under Creative Commons Attribution-NonCommercial 3.0 License