Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Project Euler problem 18 asks us to find the route from top to bottom of a triangular grid with the maximum sum.

My program should be able to take in input as shown below. The number of test cases (2) appears on the first line, and then for each test case the number of rows is given (4) and then the data for the test case, one row per line.

2 
4 
3 
7 4
2 4 6
8 5 9 3
6
690
650 901
65 774 67
435 248 677 385
878 90 378 191 703
141 296 143 756 938 529

The program should produce one line of output for each test case, giving the route with the maximum sum:

23 
4176

I have tried to implement it using python.

The code is below:

def triangle(rows):
    PrintingList = list()
    for rownum in range (rows ):     
        PrintingList.append([])
        newValues = raw_input().strip().split()
        PrintingList[rownum] += newValues
    return PrintingList

def routes(rows,current_row=0,start=0): 
        for i,num in enumerate(rows[current_row]): 
            if abs(i-start) > 1:   
                continue
            if current_row == len(rows) - 1: 
                yield [num]
            else:
                for child in routes(rows,current_row+1,i):
                    yield [num] + child

testcases = int(raw_input())
for num in range(testcases):
    rows= int(raw_input())
    triangleinput = triangle(rows)
    max_route = max(routes(triangleinput),key=sum)
    sum(max_route)

When i type this:

1
3
1
2 3
4 5 6

I get this error:

Traceback (most recent call last):
  File "Maximum Route.py", line 23, in <module>
    max_route = max(routes(triangleinput),key=sum)
TypeError: unsupported operand type(s) for +: 'int' and 'str'

Need some guidance.. Do point out if there are other errors... Thanks...

share|improve this question
they pointed me to here.... – lakesh Sep 12 '12 at 9:39

migrated from codereview.stackexchange.com Sep 12 '12 at 10:42

1 Answer

up vote 2 down vote accepted

Here's the problem:

newValues = raw_input().strip().split()

You need to convert your input to integers:

newValues = map(int, raw_input().split())
share|improve this answer
1  
Using strip first is unnecessary if you use split without arguments, because then (quoting docs) "any whitespace string is a separator and empty strings are removed from the result.". So, any leading or trailing whitespace is automatically removed by split. – Lauritz V. Thaulow Sep 12 '12 at 10:56
I extracted this from the code in the question. – Konstantin D - Infragistics Sep 12 '12 at 11:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.