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
19 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
2answers
23 views

Dynamically styling JSON list input

my first question here after reading and attempting many responses... and I should confess that I'm pretty new to all this. I have a long list stored in JSON format. It's well over 500 items long. I ...
1
vote
1answer
121 views

How to iterate through all <select> field options in behat / mink

I am testing a product search form. Product may be searched be different parameters (like status, material, wight etc.). When i want to search by status i do the following: Scenario Outline: search ...
0
votes
1answer
21 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 ...
1
vote
1answer
64 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 ...
0
votes
1answer
42 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
5answers
3k views

Python: Using Dictionary get method to return empty list by default returns None instead!

In python I would like to build up an dictionary of arrays using the dictionary get method to by default supply an empty list to then populate with information e.g.: dict = {} for i in range( 0, 10 ...
1
vote
4answers
52 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 ...
1
vote
1answer
50 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 ...
0
votes
1answer
37 views

Pure ASP hyperlink for all files in a folder

I recently had a project and couldn't find simple code anywhere.. hope this helps someone! Make sure to set NTFS permissions for the IIS app account on the folder. Use file:// for files http:// for a ...
0
votes
1answer
108 views

Haskell - list comprehension can't enumerate N × N

I have to write a function which returns a list of all pairs (x,y) where x, y ∈ N , and: x is the product of two natural numbers (x = a • b, where a, b ∈ N) and x is really bigger than 5 but really ...
-1
votes
2answers
19 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, ...
3
votes
10answers
9k views

Prolog, find minimum in a list

in short: How to find min value in a list? (thanks for the advise kaarel) long story: I have created a weighted graph in amzi prolog and given 2 nodes, I am able to retrieve a list of paths. ...
0
votes
2answers
78 views

Script to parse .xml files and list tags

I need a script to go through a directory recursively and parse every .xml files and list tags by order of most frequent to less frequent and tell how many times each tag appears in order to make a ...
1
vote
3answers
100 views

Racket/Scheme Return the first list of a connection of lists

I have the following expression: (list '* '* '* (list '- '- '- (list '* '* '*))) I want to extract: (list '* '* '*) (first (list '* '* '* (list '- '- '- (list '* '* '*)))) does not work for ...
0
votes
2answers
30 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.. ...
4
votes
3answers
99 views

Adding values to a list in a sort of “overlapped” way

I'll explain in math, here's the transformation I'm struggling to write Scheme code for: (f '(a b c) '(d e f)) = '(ad (+ bd ae) (+ cd be af) (+ ce bf) cf) Where two letters together like ad means ...
0
votes
3answers
32 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
0answers
40 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
votes
2answers
33 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 ...
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 ...
0
votes
2answers
23 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 ...
0
votes
1answer
52 views

How to get checkboxlist item value

This is how I am adding values and text to my checkboxlist in c# private void populateFruitList() { string selectCommand = "SELECT FruitName, FruitID FROM Fruit_Crate"; using (SqlDataSource ...
0
votes
1answer
34 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
3answers
60 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], ...
3
votes
4answers
40 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
24 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
12answers
74 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'])
-5
votes
3answers
65 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 ...
0
votes
0answers
4 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 ...
16
votes
3answers
4k views

What is the 'pythonic' equivalent to the 'fold' function from functional programming?

What is the most idiomatic way to achieve something like the following, in Haskell: foldl (+) 0 [1,2,3,4,5] --> 15 Or its equivalent in Ruby: [1,2,3,4,5].inject(0) {|m,x| m + x} #> 15 ...
1
vote
8answers
91 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 ...
0
votes
1answer
21 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 ...
1
vote
5answers
67 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 ...
0
votes
4answers
71 views

Python: how to iterate over list of list while iterating over each item in each nested list

I want to iterate over my list of list and iterate over each item in each nested list. below is an example of one of my list of lists (just an example - some of my lists of lists have 1 list others ...
139
votes
9answers
124k views

C# generic list <T> how to get the type of T?

Let say I have a List< T > abc = new List< T >; inside a class public class MyClass<T>//.... Later, when I initialize the class the T becomes MyTypeObject1. So I have a generic list ...
1
vote
1answer
19 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
40 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
1answer
16 views

How can I put featured results above non featured in my results list?

This code from loop-ad_listing.php is what makes all the post thumbnails appear in a list. But now I want to put featured ads above the non featured in the same way. Featured thumbnails are called ...
0
votes
2answers
181 views

Write a SQL to Join tables and save it to a List <Object>

I am using Netbeans 6.9.1, glassfish 3.1, and MySQL as my DB. I have a List <Hotel> object, that saves all the records from the Hotel Table (from MySQL) into it. There is another object ...
0
votes
2answers
48 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
vote
3answers
25 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
13 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
39 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
26 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
10 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
48 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
76 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 ...
4
votes
3answers
502 views

SharePoint List data source giving HTTP 401 “Unauthorized” error

I have built a report that uses a SharePoint list as its data source. The data source is set to use Windows Authentication (integrated security) in SSRS. It runs just fine in SSRS/BIDS, but when ...

1 2 3 4 5 396