
-----------------------------------
PropagandaPanda
Wed Apr 28, 2010 5:55 pm

2009-2010 Round 6 Question 1
-----------------------------------
Hello.

I'm not sure why the code below (Python) was judged as wrong. It was my second submission, so it didn't so up in the score sheet.

[code]def ReadFile():
    for Line in open("data1.txt").read().split("\n"):
        yield Line
            
Next = ReadFile().next

def WriteLine(Line):
    open("out1.txt","a").write(str(Line) + "\n")


def DoIt(Line):
    S = ""
    for Chr in Line:
        if "A" 