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.
1
vote
3answers
59 views
Lists being Overwritten?
I created a user-defined instruction 'getSetpoints' that reads a group of data via serial and automatically chops it up into 4-digit pieces that get dumped into a list called GROUP# (the # depends on ...
2
votes
1answer
72 views
Running into java.util.ConcurrentModificationException while iterating list
I'm trying to split a list of records into sublists of records. I successfully split the list into sublists, I wanted to see the contents of the sublists, but somehow I keep running into this ...
0
votes
2answers
52 views
Change item displayed in view using jQuery and value selected in dropdownlist
In my view I have this dropdownlist:
Filter by: <select name="orderType" id="orderType">
<option value="All">All</option>
<option ...
0
votes
2answers
44 views
Is there a simple way to split ONE list into X sublists?
I have a list of random size greater than 20k. How can I split them into sublists where each sublist will have equal lengths or equal length + 1(for the odd lists?)?
Since it is random size, ...
1
vote
1answer
30 views
identify input is from particular list within a nested list
List<List<String>> listOflists = new List<List<String>>();
List<String> firstList = new List<String>();
firstList.add("NameX");
firstList.add("AgeX");
...
0
votes
1answer
27 views
how to make an Adjacency List using a vector of vector pair in c++?
I'm trying to create an Adjacency list using a vector of vector pair, and whenever I run the code it stops working. For now, I'm only trying to add the first pair in the Adjacency List "AdjList". Is ...
1
vote
2answers
68 views
Why is .readlines() making a list of individual characters?
I have a text file of this format:
EFF 3500. GRAVITY 0.00000 SDSC GRID [+0.0] VTURB 2.0 KM/S L/H 1.25
wl(nm) Inu(ergs/cm**2/s/hz/ster) for 17 mu in 1221 ...
0
votes
0answers
45 views
error inflating class android.widget.listView slidingMenu
My app force closes and gives this error
Im using the SlidingMenuLibrary to have a slide out menu from the left side and im thinking this is where my problem is but i dont know how to solve it.
...
2
votes
3answers
59 views
How do I load both Strings and floats into a numpy array?
I need to somehow make numpy load in both text and numbers.
I am getting this error:
Traceback (most recent call last):
File "ip00ktest.py", line 13, in <module>
File = ...
-5
votes
0answers
80 views
Query List<List<>> [closed]
I have a List<List<FileProperties>> I need to query the List<FileProperty> to extract the List<List<FileProperty>> values where the FileProperty = <some Value> and ...
-2
votes
3answers
95 views
How can I check if the number is divisible by a previous number in the list?
So I want to look if the number in the list is divisible by a previous number in the list (except 1) and if so, I want to replace that number by 0 Can someone help please? I'm trying to make a 'Sieve ...
0
votes
3answers
46 views
Comparing two tuples from different lists
I have this basic code in which I'm just trying to compare each tuple in the first list (list1) with the corresponding tuple in the second list (list 2). If the tuple in list 2 is = to the ...
0
votes
2answers
55 views
Extract value from a list in another function in Python
I am programming a robot and I want to use an Xbox Controller using pygame. So far this is what I got (original code credits to Daniel J. Gonzalez):
"""
Gamepad Module
Daniel J. Gonzalez
...
-1
votes
1answer
75 views
Vertical and horizontal slides in flexslider
im trying to implement flexslider slides with vertical and simultaneous li by slide like carousel with fade effect but i cant find the correct behavior. My code:
<div class="flexslider">
<ul ...
0
votes
0answers
8 views
Order/class a selectOneMenu, hierarchical list
i have folder and subfolder and i want a list who display like that ( this is the code of my list when i press F12 et i look the code of my list) :
<option value="10">┌ Root</option>
...
0
votes
2answers
45 views
Single selection listbox selected items to another listbox
I've tried quite a few options but none of them has gotten me closer to the results.
I'm really new to WPF, so I'm sorry form my perhaps trivial question.
I have a single selection listbox and I ...
0
votes
5answers
98 views
C# Class list and properties
I'm very new to programming so this probably is a silly question for the most of you, but still and since I have already tried to look in Google, here it goes :
I created a class with some properties ...
0
votes
0answers
30 views
How to save a List<HashMap<String,String>> to an SQLite db
I want to save a List<HashMap<String,String>> to my small db. How to achieve it.. I want to use this list in many activities of my app. Is there any other possible way to access this ...
17
votes
4answers
471 views
One liner: creating a dictionary from list with indices as keys
I want to create a dictionary out of a given list, in just one line. The keys of the dictionary will be indices, and values will be the elements of the list. Something like this:
a = [51,27,13,56] ...
2
votes
2answers
44 views
Grouping list elements to dictionary
I have a list that contains 8 elements:
ConfigFile.ControllerList
this list is type of:
List<Controller>
How can i add Controllers from ControllerList to 3 dictionary keys. Dictionary is ...
0
votes
2answers
83 views
Why does the Foreach doesn't impact?
The code below doing a simple thing. manipulate the API's raw data and bind it to the view model's property.
I fetch data from a web service and save it to a object named calljsonObject. This is the ...
2
votes
1answer
43 views
Python index a list where a regex matches
Again recognizing that this is similar to a few other questions on SO but which I haven't been able to convert for my purposes. eg. with the snippet below
import re
a = ['rhubarb','plain ...
2
votes
3answers
53 views
concatenating Lists in R
I have written a function that it's output is a list. I want to put my function into a loop and I'd like to store output of each iteration (which is of course a list) into a bigger list. In other ...
0
votes
0answers
19 views
Python: Binding Keys too Buttons Through List
Hi there I'm just working on a program for a school assessment and I just need some help binding keys to my buttons, and possibly adding a 'CE' button that deletes the last button clicked, all help ...
1
vote
0answers
47 views
Smaller program will print out key from values in dictionary, but stops when incorporated into larger function?
So I have a problem.
I am wanting to do something similar to this, where I call out a value, and it prints out the keys associated with that value. And I can even get it working:
def test(pet):
...
0
votes
0answers
33 views
Getting items from an imap 'ENVELOPE' that is a list but looks like a string in python
Not sure of the best way to ask this question.
One simple version might be what is the best way to parse an 'ENVELOPE' from a
results, data=imaplib.IMAP4.fetch(index_number,'(ENVELOPE)')
command?
...
1
vote
1answer
58 views
How can I search a list with the underscore variable? (Prolog)
here's my problem I receive various lists with the underscore variable in them (for example: [ _, _, A, _, _] or [ _,A, B, _, _]), and I need to search those lists for the values that matter (in this ...
0
votes
0answers
12 views
How I can to represent my 2d grid to adjacency list ? (Game)
I'm learning about the theory of graphs, and in my book, it is say that is possible to represent a 2d grid with a adjacency list. But in my case, i have some problem to represent it in my mind :s
I ...
3
votes
5answers
83 views
List of dictionaries from pairs in list
Looking for a way to transform a list of coordinates into pairs of dictionaries, i.e if:
l = [1 2 3 4 5 6 7 8]
I want to create a list of dictionaries:
output = [{'x': 1, 'y': 2}, {'x': 3, 'y': ...
5
votes
2answers
51 views
Remove Duplicates and Original from C# List
I have a List of custom types where I want to remove the duplicate and the original if a duplicate is found. Can only be one possible duplicate.
I can overide Equals and GetHashCode and then use ...
-5
votes
1answer
54 views
How to List<string>[] of List<string>[] [closed]
I have a list like this:
List<string>[] lstGroups = new List<string>[]{new List<string>()};
and another one:
List<string>[] lstUsers = new List<string>[] { new ...
0
votes
2answers
72 views
Setting a property of an item in a list based on items in another list
Attention all list / LINQ lovers, I have a small challenge for you.
I have two list:
List<ObjectInfo> firstListObject;
List<ObjectInfo> secondListObject;
The first list is a list that ...
0
votes
7answers
99 views
Python - checking if an element is in two lists at the same time
In Python, to check if an element is in two lists, we do
if elem in list1 and elem in list2:
Can we do the following for this purpose?
if elem in (list1 and list2):
1
vote
3answers
76 views
Using a list inside a struct c++
I´m starting with the programming and i speak bad english sorry for that.
I like to use a list instead of an array, inside of a struct, something like this:
#include <iostream>
#include ...
-1
votes
3answers
45 views
What kind of collection to use in grails controller?
I have data being pulled out from the web. I have managed to put the fields I need in variables. How would I put them in a collection? Should I use expandos? I do not have model class. I am thinking ...
1
vote
3answers
58 views
How can I compare for equality the values of two lists in one loop?
So I want to make this so I can check if another code is working, but I keep getting this error:
'list index out of range'
For the following code:
for L1[i] in range(0, len(L1)):
if ...
0
votes
1answer
55 views
Updating list items using PHP and AJAX
I'm trying to make 2 lists where one lists is updated depending on what the user choses from the first list.
The first list is made up of "lists names"... every "list" that is made by a user contains ...
1
vote
6answers
51 views
(Python 2.7) Use a list as an argument in a function?
So I'm trying to learn Python using codecademy but I'm stuck. It's asking me to define a function that takes a list as an argument. This is the code I have:
# Write your function below!
def ...
0
votes
1answer
82 views
“Or” procedure in prolog
I'm doing a prolog program for college that is a bit like the cluedo game. I have six suspects with different traits:
suspect(Name, Age, Weapon, Shape, Object, Shoes)
The goal is to implement a ...
1
vote
2answers
63 views
Getting rid of empty strings in a tuple
path = "C:/Users/bg/Documents/Brad/Code/Visual Studio/"
def getUnitTest(path):
foundFiles = []
for r,d,f in os.walk(path):
for files in f:
if ...
0
votes
0answers
9 views
Duplicate or False Objects in List Python
The following code is not correct. Can you tell me why i get a list with elements that should be empty ..
i = 0
for post in posts:
posts_complete[i].post = post
print(not ...
0
votes
0answers
10 views
Render the content of a List<OfSomeType>
I'm faced with the following problem of rendering the content of a List.
I have
public class Report
{
public struct Results
{
public string meth { get; set; }
public TimeSpan ...
2
votes
1answer
64 views
List as element of list of lists or multidimensional lists as a grid
I am trying to create a lat/lon grid that contains an array of found indices where two conditions are met for a lat/lon combination. This approach might be too complicated, but using a meshgrid or ...
0
votes
0answers
8 views
Datagrid show name of my objects .NET, how can i do to show the values from my objects?
i have a problem. i have a list of objetcs an some of my objects have inside others objects, and when i put this list into my DataSource of the grid i have this:
I USE .NET 2010
my question is, how ...
0
votes
1answer
43 views
Work with append [duplicate]
I have a number (nsteps) of groups of results (data). Each data has four subgroups of results (len(nodeSets)), one for each nodelabel.
I'd like to join in the same row the subgroups of results for ...
0
votes
2answers
60 views
Hashmap inside a list to process my text file
I have a text file to be read and processed (separated by one tab space) which is something like:
GroupNum Id Name Address
1 1 john USA
1 2 mike Uk
2 3 smith ...
8
votes
5answers
107 views
Python list sorting dependant on if items are in another list
Say I have a list:
A = [1,2,3,4,5,6,7,8,9,0]
and a second list:
B = [3,6,9]
What is the best way to sort list A so that anything that matches an item in list B will appear at the beginning so ...
0
votes
1answer
39 views
How to send a List<HashMap<String,String>> list to another activity
I was trying to send List> list to another activity. I tried many ways but couldn't. Please help!
2
votes
2answers
39 views
strings, lists and matplotlib
I am trying to read some data from a file and then take the first row and plot it on a graph against some other data using matplotlib.
My code is
import numpy as np
import matplotlib.pyplot as ...
0
votes
1answer
27 views
xsd pattern for comma seperated list of single character
i have a problem in below xsd schema how can i restrict comma separated string to only one character like this
<status>A,B,C,D</status>
currently i am using below code to create ...






