list may refer to: a linked list (an ordered set of nodes, each referencing its successor), or a form of dynamic array. Not to be used for HTML lists, use [li] instead.

learn more… | top users | synonyms (1)

0
votes
0answers
13 views

Google Spreadsheets: Setting list of items to default value

I have a range of cells in a Google Spreadsheet, each with a list of items that drop down (0,1,2,3). At the end of every week I would like to set them all back to the default zero. Is there a quick ...
1
vote
4answers
64 views

Button click to add string to List<string>

I would like to have a button that when clicked will take the text of what's inside the text box and add it to a list of strings. Then, I have another button that when clicked will output the count ...
0
votes
3answers
41 views

How to sort List<Point> [duplicate]

I have this variable: List<Points> pointsOfList; it's contain unsorted points( (x,y) - coordinates); My question how can I sort the points in list by X descending. for example: I have ...
0
votes
1answer
34 views

Switching BG using Python

I'm writing a simple program that changes my background when I run it. I'm trying to make it so that when I run it, it changes the background then when I run it again it goes to the next image in the ...
2
votes
3answers
71 views

Python not ignoring empty items in list

I have this code to print some strings to a text file, but I need python to ignore every empty items, so it doesn't print empty lines. I wrote this code, which is simple, but should do the trick: ...
0
votes
0answers
12 views

jQuery.cookie saving and loading settings

I got this runtime dynamic unordered list with .sortable() which I want to store its new listitem order in my cookie after a drag event. On a page reload the saved index values get loaded from the ...
0
votes
3answers
43 views

Load distinct values from database into List<>

I made a Record POCO class with a foreign key to an Event (=sport discipline). A record can be linked to 1 event but an event can have multiple records (world record, olympic record, etc..). Now I ...
0
votes
2answers
60 views

Not printing a string if I have an empty list

So I have some code where I create a list at the start and then ask a user if he wants to make an object (turtle), in which case it adds that to the list, OR if he wants to move the turtle (X). If the ...
1
vote
3answers
108 views

Partitioning a list in Python

I would like to find out how to modify the contents of a list, specifically filenames which have been returned by os.listdir(). The filenames consist of a number of duplicate names followed by an ...
2
votes
4answers
70 views

Access property/variable from unknown object

I have a list of 'object' that has different kinds of objects in it. I need to be able to edit/read a property of the objects that all of them have, but I don't know how to do that. ...
1
vote
3answers
71 views

Recursive object-listing

Is there an elegant way in R to recursively turn an arbitrary deep list (containing lists and vectors) into a vector of paths? For example, convert this: list( home = list( jerry = c("R", ...
0
votes
2answers
64 views

List of different objects that implement an interface [closed]

I saw something similar to this using inheritance but I want to use an interface I want to create a single arraylist consisting of different objects. ArrayList containing the following objects ...
-4
votes
1answer
57 views

C# Joining 3 Lists with Linq [closed]

I want to join 3 Lists that have the following format: List1: CountryID | CountryData | regionUID =================================== 12 | Has good gras | 4567 12 | nice ...
4
votes
3answers
59 views

Printing lists onto tables in python

If i had three lists such as a = [1, 2, 3] b = [4, 5, 6] c = [7, 8, 9] And wanted to print it like this 1 4 7 2 5 8 3 6 9 How would i do that?
1
vote
1answer
30 views

Center multiple row list items with specific amount per row

I'm trying to create an unordered list spanning over multiple rows that is always centered and where I can set which child breaks into a second row, for example - link | link | link | link link ...
0
votes
0answers
29 views

Extract list object slot into function with R

I've fitted 28 arma+garch models with a function and put the 28 fits all togheter via sapply: ` garch_models <- sapply(returns, garchAuto)` Now I have the following strucutre (only a extract of ...
0
votes
2answers
77 views

Issue with adding a Double to a List<double>

I'm getting an issue with adding a Double to a List<double> from a CSV file. Now I've done this before, with the exact same file, and added it to a Double Array. Here is my code that works with ...
0
votes
1answer
45 views

List to Hashmap to create API

I have some method that return an object and a count, due to the following SQL request public List<Sales> mostLoyal() { String queryString = "SELECT s, COUNT(s.saleId) as TotalNum FROM ...
1
vote
1answer
55 views

C# DataTable error

I have a DataTable printed on a ListView, it was working fine, but at some point, it started trhowing theese errors. The workaround for this project is: User fills the WinForms, then inserts on ...
-1
votes
2answers
32 views

Explain how prolog handles this query?

my_append([], L, L). my_append([H|T], L, [H|NewTail]):- my_append(T, L, NewTail). Here is a program that can appear in my exam. The output is here: ?- my_append([1,2,5], [3,4], L). L = [1, 2, 5, ...
1
vote
1answer
87 views

List of first occurrences in original order

Suppose I have x: List[A]. What is an elegant way of building y: List[A] such that y contains only the first occurrence of each element of x, in the same order? Actually I am really only interested ...
1
vote
4answers
63 views

Identifying coordinate matches from two files using python

I've got two sets of data describing atomic positions. They're in separate files that I would like to compare, aim being identifying matching atoms by their coordinates. Data looks like the following ...
0
votes
2answers
31 views

Center List in side a div Problems?

quick question trying to center my list with images inside a div... really cant get to grips of hows it done.. this is what I'm getting.. icons way to small wanna make them big and center the list.. ...
0
votes
3answers
36 views

Python: Variance of a list of defined numbers

I am trying to make a function that prints the variance of a list of defined numbers: grades = [100, 100, 90, 40, 80, 100, 85, 70, 90, 65, 90, 85, 50.5] So far, I have tried proceeding on making ...
0
votes
1answer
25 views

Java awt.list ActionListener single click

I have a list of cities. When you click on a city it shows the current time, date etc.. for the city However it only updates when i double click on the city How would I go about changing it to a ...
0
votes
0answers
41 views

Get index of changed element

I have a custom list in HTML wich I add rows dynamically when click in a button, the row has 2 column where the second column will be filled depending of the selection of the first column on the same ...
1
vote
2answers
44 views

How can I reference an List<string> object's position index without searching for first occurrence?

I am trying to create an XML document using Linq and need to reference the index within a list of each object. At the moment all I can find is the IndexOf(s) method which just returns the first ...
-1
votes
2answers
35 views

How to populate xml from list of paths

How to populate XML from list of paths in C#? For example: C:\WINDOWS\addins C:\WINDOWS\AppPatch C:\WINDOWS\AppPatch\MUI C:\WINDOWS\AppPatch\MUI\040C C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727 ...
0
votes
2answers
34 views

Text file is processed using Hashmap containing List(of maps) as values-How to process?

My text file contains datas like... dept->studentId-StudentData(name and email).. IT-> 1->john->john@ymail.com CSE->2->Santosh->s@gmail.com IT->3->Mike->mike@ymail.com First,I have stored the ...
3
votes
3answers
43 views

append a list into end of list in list

Is there a good way to 'merge' 2 lists together so an item in one list can be appended to the end of a list in a list? For example... a2dList=[['a','1','2','3','4'],['b','5','6','7','8'],[........]] ...
1
vote
3answers
32 views

Misplaced list elements due to CSS in firefox and chrome

I have a list of names which is rendered inside <ul>. I am applied some CSS code but facing some browser specific issues. Chrome : List element is getting displaced by 1 row. Firefox : All ...
0
votes
0answers
7 views

Using jcifs to list nodes on network

I've seen several Android applications being able to list nodes on "Network neighbourhood". Besides very cryptic info here: https://lists.samba.org/archive/jcifs/2011-June/009631.html I couldn't ...
-5
votes
3answers
70 views

How to search a list and return the specific strings and data associated with it using Java

I have a list of names with Account numbers associated with them. How would I create a method that when I type a certain name from the keyboard it would search the list and return all the account ...
1
vote
8answers
102 views

Python: What's a fast way to read and split a file?

I need to read a file and split it into lines, and also split those lines in half by tab characters, as well as getting rid of all speech marks. At the moment I have a working function. However, it is ...
1
vote
3answers
73 views

Map list to list of lists by index (Python)

I'm looking for an efficient way to map a list of values, say x = [1,2,3,4,5,6,7,8,9] to another list, containing lists of values of the same total range, for example z = [[1,2,3], [4,5,6], ...
0
votes
1answer
40 views

python merge sort implementation results in nested lists

I'm attempting to implement merge sort in python #!/usr/bin/python import math def merge_sort(unsorted): if(len(unsorted)<2): return unsorted middle = ...
1
vote
1answer
21 views

Xml List to Jaxb

What way JAXB give to convert this type of XML conversion <options> <option name="name">https://abc.com/</option> <option name="name2">https://abc.com/</option> ...
0
votes
1answer
23 views

Xslt size of token array (tokenize, number of tokens)

Is there a way to getting the size of a token array after having run tokenize($text, '\s+')? Without running a loop. I miss Java in these cases where I can just run list.size(). Cheers Answer ...
0
votes
1answer
47 views

Can a unique list accept lower and upercase entries

My script logs information about all the unique file types in a directory and subdirectory. In the process of creating a unique list of file extensions the current code considers that jpg, Jpg and JPG ...
0
votes
12answers
84 views

create dict from two lists python without zip()? [closed]

I'm creating a dict using zip(), how would I do it without zipping or numpy? def listtodict(list1, list2): d={} return dict(zip(list1, list2)) print listtodict([1,2,3,4,5],['a','b','c','d','e'])
1
vote
5answers
70 views

Converting String List into Int List in SQL

I have a nvarchar(MAX) in my stored procedure which contains the list of int values, I did it like this as it is not possible to pass int list to my stored procedure, but, now I am getting problem as ...
1
vote
3answers
28 views

PHP dynamic list pick values in next page

Am trying to insert values from a php generated option list into a mysql database. The error i am getting in a "notice error". The error reads: Notice: Undefined index: fixture_id in ...
0
votes
1answer
20 views

list_for_each_entry reset cursor

Hi I am new in this and I trying to use list_for_each_entry to iterate over a list. It looks something like this list_for_each_entry(pos, head, member){ if (something == pos.x) //reset the ...
0
votes
1answer
46 views

Moving objects as a list

So in the below code I am trying to give a menu of instructions. What I am having problems with is the 'N' command section that calls the MakeTurtle() function. I am trying to add all turtles to a ...
0
votes
1answer
32 views

How to use SequenceEqual to compare coordinates?

If the nested int[] contains coordinates x, y, how do I compare them using SequenceEqual? The List are a group of coordinates. I want to check every other List to see if they have the same number of ...
-2
votes
0answers
13 views

I have no left sidebar, profile link, etc since my page changed the other day [closed]

My FB changed a few days ago and since that time, I can not see anything on the left where the new "sidebar" is supposed to be. It's just a big blank white space. All of my lists, apps, etc are ...
0
votes
3answers
51 views

make object from list

Ok so I have this code: earth = makeWorld() def turtle(): list = ['Bill', 'Fred'] for name in list: print name name = makeTurtle(earth) What I am wanting to do is iterate through the ...
1
vote
3answers
81 views

Is it possible see the value returned in c++?

So..I'm testing a function with assert: (The value of pBola1 is 1) assert(BomboTest.TreureBola(1)==pBola1); BomboTest.TreureBola it's a function that returns a random number (in this case has to ...
0
votes
1answer
59 views

Iterate through a list

Very simple problem. Sorry I am new. I have this code below: list = ['edward', 'jason', 'john'] for i in list: print list and it produces: john Why do I only get the last name? I want all of ...
0
votes
2answers
50 views

Select from list by index, but keep other associated items in list

If I have a 2dlist of points like this... myList=[['ab','0_3','-1','1'],['bm','2_1','-3','2'],['am','4_1','-1','3'],...]] where '-1','1' for example are x, y coordinates (the last 2 columns) and I ...

1 2 3 4 5 398