Tagged Questions
The nested-lists tag has no wiki summary.
10
votes
6answers
2k views
Python append() vs. + operator on lists, why do these give different results?
Why do these two operations give different results?
>>> c = [1, 2, 3]
>>> c
[1, 2, 3]
>>> c += c
>>> c
[1, 2, 3, 1, 2, 3]
>>> c = [1, 2, 3]
>>> ...
10
votes
3answers
5k views
Python - sort a list of nested lists
I have input consisting of a list of nested lists like this:
l = [[[[[39]]]], [1, 2, 3], [4, [5, 3], 1], [[[[8, 9], 10], 11], 12]]
I want to sort this list based on the sum of all the numbers in ...
7
votes
2answers
199 views
haskell - nested empty lists
Hello Haskellers and Haskellettes,
when reading http://learnyouahaskell.com/ a friend of mine came up with a problem:
Is it possible in Haskell to write a recursive function that gives True if all ...
6
votes
3answers
342 views
What is an idiomatic way to add lists in Haskell?
Suppose I want to add two lists in Haskell. What is the most usual way to do this?
Here's what I did:
addLists :: (Integral a) => [a] -> [a] -> [a]
addLists xs ys = map add $ zip xs ys
...
6
votes
1answer
341 views
How to concat lists in erlang without creating nested lists?
I'm trying to be a good erlanger and avoid "++". I need to add a tuple to the end of a list without creating a nested list (and hopefully without having to build it backwards and reverse it). Given ...
5
votes
4answers
124 views
Navigate manually with a cursor through nested lists by only providing “left()” and “right()” as commands?
Eventhough I write in python I think the abstract concept is more interesting to me and others. So pseudocode please if you like :)
I have a list with items from one of my classes. Lets do it with ...
5
votes
3answers
638 views
Common Lisp - Find the most nested list inside a list
I'm new to Common Lisp and functional programming, but I have a lot of experience in languages like C, C++, C#, Java and so on. I'm having trouble finding the most nested list inside a list. My input ...
5
votes
5answers
380 views
Split a list into nested lists on a value
Say I have a list like so:
[1, 4, None, 6, 9, None, 3, 9, 4 ]
I decide to split this into nested lists on None, to get this:
[ [ 1, 4 ], [ 6, 9 ], [ 3, 9, 4 ] ]
Of course, I could have wanted to ...
5
votes
7answers
2k views
How to create nested lists in python?
I know you can create easily nested lists in python like this:
[[1,2],[3,4]]
But how to create a 3x3x3 matrix of zeroes?
[[[0] * 3 for i in range(0, 3)] for j in range (0,3)]
or
[[[0]*3]*3]*3
...
4
votes
2answers
137 views
retrieve an element from a list of tuple with more than 2 elements (Haskell)
I'm new to Haskell and need some help on this situation. I have the following list
-- create a type for bank account
type AcNo = String
type Name = String
type City = String
type Amnt = Int
type ...
4
votes
2answers
113 views
Convert list of positions [4, 1, 2] of arbitrary length to an index for a nested list
Assuming this list
nestedList = ["a", "b", [1, 2, 3], "c",[4, 5, 6, [100, 200, 300]], "d"]
I have a function that returns a position list for a nested list of arbitrary depth.
Examples:
[2, 1] ...
4
votes
4answers
195 views
Add two matrices in python
I'm trying to write a function that adds two matrices to pass the following doctests:
>>> a = [[1, 2], [3, 4]]
>>> b = [[2, 2], [2, 2]]
>>> add_matrices(a, b)
[[3, ...
4
votes
1answer
396 views
PHP/Smarty - How to check an array for objects with specific values, and create temp array of those objects
First-timer here, I hope I explain this well enough...
PHP/Smarty, I'm working on a section of a page that displays bullet lists of notes associated with either the general page, or individual places ...
4
votes
1answer
266 views
How do I parse a string representing a nested list into an actual list?
Say I have a string representing some nested lists and I want to convert it into the real thing. I could do this, I think:
exec "myList = ['foo', ['cat', ['ant', 'bee'], 'dog'], 'bar', 'baz']"
But ...
4
votes
3answers
931 views
Mapping a nested list with List Comprehension in Python?
I have the following code which I use to map a nested list in Python to produce a list with the same structure.
>>> nested_list = [['Hello', 'World'], ['Goodbye', 'World']]
>>> ...
3
votes
3answers
70 views
C# nested lists entry issue
I'd like to use nested lists in my data acquistion application to store my incoming 16bit data dynamically. I created a list of UInt16 and added it three times (NUMCHANNEL=3) to a List type list. Now ...
3
votes
2answers
94 views
How do I remove surrounding parentheses in a nested list in Scheme if that nested list has 1 element?
Say I have the list: (a b ((c)) (d + e) ((e + f)) (g) () h)
How do I get the following list (preferably with a function):(a b c (d + e) (e + f) g h)
In other words:
If the nested list has only ...
3
votes
3answers
105 views
Splitting list into multiple lists to gain a speedup?
Let's say my list is about 1,000,000 entries long. To acess an item, the time would be O(500,000), which seems very long to me.
What happens when I split the list up into multiple lists ? Let's ...
3
votes
2answers
87 views
Adding level depth to class of nested lists
I have nested lists like this:
<ul>
<li>item 1</li>
<li>item 2
<ul>
<li>subitem 1</li>
...
3
votes
1answer
81 views
C Progamming: Linked Lists
I'm writing a program using linked list (such a nightmare).
Anyway, the purpose of the program is to enter 8 characters and have the program print the characters back out to you and also print the ...
3
votes
5answers
101 views
Python: Return 2 ints for index in 2D lists given item
I've been tinkering in python this week and I got stuck on something.
If I had a 2D list like this:
myList = [[1,2],[3,4],[5,6]]
and I did this
>>>myList.index([3,4])
it would return
1
...
3
votes
4answers
94 views
How do I compare the value in a list to the first value of a nested list and return the nested list results?
I have the following two lists.
List 1
(a,b,h,g,e,t,w,x)
List two
((a,yellow),(h,green),(t,red),(w,teal))
I want to return the following
...
2
votes
4answers
68 views
Finding an exact position of a smaller list inside a list (python)
So i Have a list which is something like this:
list=[10.0, 10.0, 10.0, 9.9, 9.9, 9.9, 10.0, 9.9, 10.0, 10.0, 10.0, 10.0, 9.9, 9.9, 9.9, 9.9, 9.9, 9.9, 10.0, 10.0, 10.0, 10.2, 10.0, 9.9, 9.9, 9.9, ...
2
votes
4answers
85 views
Manipulating Lists within lists in python
I'm having trouble wrapping my head around dealing with lists within lists in python (I am rather new at programming).
Now how would I access each nested list position and then manipulate the ...
2
votes
4answers
139 views
Setting up a Counter in a Table (Mathematica )
I have two questions,
Q1.
The code is below:
orgtable = Table[{i, node2 = i + 1, node3 = node2 + 6, node4 = node3 - 1,
node5 = i + 18, node6 = node5 + 1, node7 = node6 + 6,
...
2
votes
4answers
170 views
Python unpack 2-dimensional list of named tuples
I have a 2-dimensional list of named tuples (let's say that each tuple has N values), and I want to unpack them into N different 2-dimensional lists where each unpacked 2-D list is composed entirely ...
2
votes
2answers
110 views
How do I split a list into a list of lists on a specific character in the elements?
I'm relatively new to programming and trying get a (very) long list of information into a table using Python. I installed HTML.py from Decalage and now need to get my list turned into into a list of ...
2
votes
3answers
95 views
using lists for simulation
I set myself a little challange on my way to learning R. The question was, given a sample of 500 numbers in normal distribution with mean 20, how many numbers under 20 would I get for standard ...
2
votes
3answers
134 views
Variable names with dictionaries?
Python beginner here. A question about dictionaries.
My input is a variable length list (eg a = ['eggs', 'ham', 'bacon'...] ) which functions as a list of search terms to be used on an imported CSV ...
2
votes
3answers
221 views
Python: Removing a single element from a nested list
I'm having trouble figuring out how to remove something from within a nested list.
For example, how would I remove 'x' from the below list?
lst = [['x',6,5,4],[4,5,6]]
I tried del lst[0][0], but I ...
2
votes
1answer
136 views
How to remove sublists with lowest counts and keep the one with the highest count from the main list?
I have a list of sublists which is as List<List<nodes>>. I have stored some lists in the List of lists that now i refer to as the main list. Now i have to compare the counts of the ...
2
votes
3answers
229 views
What's the fastest way to loop through a list and create a single string?
For example:
list = [{"title_url": "joe_white", "id": 1, "title": "Joe White"},
{"title_url": "peter_black", "id": 2, "title": "Peter Black"}]
How can I efficiently loop through this to ...
2
votes
2answers
286 views
Python how to iterate through a list and compare lists of strings found within
If I have a nested list that looks like this:
bigstringlist = [['rob', 'bob', 'sam', 'angie'], ['jim', 'angie', 'tom', 'sam'], ['sam', 'mary', 'angie', 'sally']]
How do I iterate through this list ...
2
votes
3answers
196 views
List Comprehension in Nested Lists
I have a list like [["foo", ["a", "b", "c"]], ["bar", ["a", "b", "f"]]]
and I'm wanting to split it out so I can get a count of the total number of As, Bs, etc. but I'm new to Python and having a bit ...
2
votes
1answer
806 views
Django URLs - How to pass a list of items via clean URLs?
I need to implement a structure similar to this: example.com/folder1/folder2/folder3/../view (there can be other things at the end instead of "view")
The depth of this structure is not known, and ...
1
vote
3answers
59 views
java object to json string to build jqmobile nested list
Below is my object structure, I get the list of OrganizationVO from db. Could some one suggest how to convert this list to JSON format ?
class OrganizationVO {
String name;
int id;
String ...
1
vote
3answers
94 views
Dictionary With Multiple Values To Nested List
I have a dictionary with the following structure:
{'ONE' : (4, 6, 9), 'TWO' : (3, 8, 10)}
I'd like to sort this dictionary by the 3rd value of each tuple. I can't really think of a way to ...
1
vote
6answers
86 views
C# list of lists - how to make list in lists unique and edition resistant?
this time I've got an C# programming issue:
I've got a list of lists:
List<List<string>> List1
And that list of strings in it:
List<string> List2
And, in loop, I want to put ...
1
vote
8answers
160 views
What works faster: two dimensional arrays or list of lists
I have a performance situation at hand.
I have a huge amount of data to be held in memory in a two dimensional table format (12000 X 2000). Now as far as my knowledge goes either I can use int[][] ...
1
vote
3answers
110 views
Django hierarchical model list
This should be simple, but I'm shredding my hair just trying to think how to tackle it!
I have a navigation menu down the side of my site that is used to pick products. It's formatted like so:
...
1
vote
1answer
47 views
How can I shift list elements “down” to corresponding elements of another list recursively in Python?
I have a list of 6-element lists. If two particular "columns" of the nested list don't match, I want to recursively "shift" the first 3 elements to the next list for the length of the top list... So:
...
1
vote
1answer
23 views
creating a special kind of merged list within a list in django
I'm sure that this is pretty easy to do but I'm not sure how to do it.
I have three lists: list1=[a1, a2, a3...], list2=[b1, b2, b3...], and list3=[c1, c2, c3...]
I want to pass a list that is a ...
1
vote
1answer
112 views
Select[nested_list, condition] in Mathematica
Let's say I have a list:
list=Table[{RandomReal[],RandomReal[],RandomReal[]}, {i,1,100}];
I'd like to make a new list based on conditions. Now I've seen that I should use the Select function, but I ...
1
vote
2answers
79 views
Filter list of lists
I'm very new with Haskell, only starting to learn it.
I'm using "Learn You a Haskell for Great Good!" tutorial for start, and saw example of solving "3n+1" problem:
chain :: (Integral a) => a ...
1
vote
1answer
57 views
Nested List of Custom Object. VB.NET
I'm new to VB.net and requires your help.
I've two vb.net Structures, Quotation and FareAsPerVehicleType, Quotation is dependent on FareAsPerVehicleType. I am trying to add VehicleType in Quotation by ...
1
vote
3answers
107 views
Python: merge nested lists
beginner to python here.
I have 2 nested lists that I want to merge:
list1 = ['a',
(b, c),
(d, e),
(f, g, h) ]
list2 = [(p,q),
(r, s),
(t),
...
1
vote
2answers
64 views
MVC3 Object with a Collection of Child Objects
I have an MVC3 Project in C#.Net. I have Object1 with a list of Object2...
//navigation Property(s)
public virtual ICollection<Object2> Object2s { get; set; }
Object2 has an Object1 ...
1
vote
3answers
94 views
Return an item in a nested list (python)
I'm doing a lab for a basic programming class in Python, and I can't figure out how to return a number in a list, in another list.
I'm supposed to return 4 with "one expression and no parenthesis"
...
1
vote
1answer
109 views
Python: converting a nested list into a simple list with coord positions
I am learning python and panda3d currently.
I have a nested list which i need to convert into a list of coordinates.
my input is
[['g,g', 'g,g'], ['d,d', 'd,d,d', 'd,d], ['s,s', 's,s']]
The ...
1
vote
2answers
170 views
Linq on a nested List - select all Id's
I have a nested list, something like this:
List<Hotel> Hotels;
public class Hotel
{
List<RoomType> RoomType;
}
public class RoomType
{
Room Room;
}
public class Room
{
int ...