vote up 0 vote down star

I need a good function to do this in python.

def foo(n):
    # do somthing
    return list_of_lists

>> foo(6)
   [[1],
    [2,3],
    [4,5,6]]
>> foot(10)
    [[1],
    [2,3],
    [4,5,6]
    [7,8,9,10]]

NOTE:Seems like my brain has stopped functioning today.

flag

It's almost code-golf. – gs Sep 27 at 9:07

6 Answers

vote up 7 vote down check
def foo(n):
  lol = [ [] ]
  i = 1
  for x in range(n):
    if len(lol[-1]) >= i:
      i += 1
      lol.append([])
    lol[-1].append(x)
  return lol
link|flag
(+1) thank you very much. – david Sep 27 at 7:19
2  
+1 for a valid use of lol as a variable name – MiseryIndex Sep 28 at 3:18
@MiseryIndex, +1 for noticing what "list of lists" can also spell;-) – Alex Martelli Sep 28 at 3:31
vote up 1 vote down

Here's my python golf entry:

>>> def foo(n):
...     def lower(i): return 1 + (i*(i-1)) // 2
...     def upper(i): return i + lower(i)
...     import math
...     x = (math.sqrt(1 + 8*n) - 1) // 2
...     return [list(range(lower(i), upper(i))) for i in  range(1, x+1)]
...
>>>
>>> for i in [1,3,6,10,15]:
...     print i, foo(i)
...
1 [[1]]
3 [[1], [2, 3]]
6 [[1], [2, 3], [4, 5, 6]]
10 [[1], [2, 3], [4, 5, 6], [7, 8, 9, 10]]
15 [[1], [2, 3], [4, 5, 6], [7, 8, 9, 10], [11, 12, 13, 14, 15]]
>>>

The calculation of x relies on solution of the quadratic equation with positive roots for

0 = y*y + y - 2*n
link|flag
vote up 3 vote down

This is probably not a case where list comprehensions are appropriate, but I don't care!

from math import ceil, sqrt, max

def tri(n):
    return n*(n+1)/2

def irt(x):
    return int(ceil((-1 + sqrt(1 + 8*x)) / 2))

def foo(n)
    [list(range(tri(i)+1, min(tri(i+1)+1, n+1))) for i in range(irt(n))]
link|flag
1  
+1, for the worst solution (still like it though…) – gs Sep 27 at 9:05
Num. ∞, that's me. – outis Sep 27 at 12:58
vote up 5 vote down

Adapted from gs's answer but without the mysterious "1.5".

def foo(n):
    i = c = 1
    while i <= n:
        yield range(i, i + c)
        i += c
        c += 1

list(foo(10))
link|flag
vote up 1 vote down

One more, just for fun:

def lol(n):
    entries = range(1,n+1)
    i, out = 1, []
    while len(entries) > i:
        out.append( [entries.pop(0) for x in xrange(i)] )
        i += 1
    return out + [entries]

(This doesn't rely on the underlying list having the numbers 1..n)

link|flag
whats ls and where is it declared – Edwards Sep 27 at 8:24
vote up 8 vote down
def foo(n):
    i = 1
    while i <= n:
        last = int(i * 1.5 + 1)
        yield range(i, last)
        i = last

list(foo(3))

What behavior do you expect when you use a number for n that doesn't work, like 9?

link|flag
+1 nice and clean. – Peter Sep 27 at 8:45

Your Answer

Get an OpenID
or

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