0
votes
3answers
110 views
python : list index out of range error
I have written a simple python program
l=[1,2,3,0,0,1]
for i in range(0,len(l)):
if l[i]==0:
l.pop(i)
This gives me error 'list index out of range' on line if …
0
votes
3answers
65 views
How do you automap List<float> or float[] with Fluent NHibernate?
Having successfully gotten a sample program working, I'm now starting
to do Real Work with Fluent NHibernate - trying to use Automapping on my project's class
heirarchy.
It's a …
3
votes
5answers
1k views
Python - get position in list
I am iterating over a list and I want to print out the index of the item if it meets a certain condition. How would I do this?
Example:
testlist = [1,2,3,5,3,1,2,1,6]
for item …
1
vote
2answers
61 views
How to add an item to a list of generics declared as a list of an abstract object in C#
Hello everybody.
So I have an abstract class named "Account" :
public abstract class Account
{
private string _FinancialInstitution;
public string FinancialInstitution
…
2
votes
5answers
73 views
Reference to Part of List - Python
If I have a list in python, how can I create a reference to part of the list? For example:
myList = ["*", "*", "*", "*", "*", "*", "*", "*", "*"]
listPart = myList[0:7:3] #This …
0
votes
2answers
23 views
how to add the values stored in a session variable in php?
Okay
I have two pages-- page1.php and page2.php .Both of these pages have select lists.I have posted the values selected by the user to script.php which has them stored in sessio …
-1
votes
4answers
196 views
Python - Most useful lists-comprehension construction
What Python's user-made list-comprehension construction is the most useful?
I have created the following two quantifiers, which I use to do different verification operations:
de …
5
votes
8answers
4k views
Python: For each list element apply a function across the list
Given [1,2,3,4,5], how can i do something like 1/1, 1/2, 1/3,1/4,1/5, ...., 3/1,3/2,3/3,3/4,3/5,.... 5/1,5/2,5/3,5/4,5/5
I would like to store all the results, find the minimum, a …
3
votes
4answers
90 views
Good way to combine two List<T>s in .NET 2.0?
I have two lists I need to form the union of, but I'm in .NET 2.0 so the Union() method appears to be out. These are lists of integers, so no problem with the equality comparisons …
1
vote
2answers
54 views
Prolog list question
I have a database consisting of the following rules;
speaks(fred [german, english, dutch]).
speaks(mary [spanish, arabic, dutch]).
speaks(jim [norwegian, italian, english]).
speak …
0
votes
5answers
165 views
Java Code Review: Merge sorted lists into a single sorted list
I want to merge sorted lists into a single list. How is this solution? I believe it runs in O(n) time. Any glaring flaws, inefficiencies, or stylistic issues?
I don't really like …
0
votes
2answers
27 views
Create a List (url links) and deploy it as a feature
Hi All,
I'm very new to SharePoint, so apologies if this sounds a little basic.
I want to create a List in SharePoint that is just purely URL links, but then make it available to …
6
votes
6answers
214 views
ok, this worked. what is it exactly?
I just lifted this snippet from a website and it proved to be exactly the solution I needed for my particular problem.
But I have no idea what it is (particularly the delegate an …
2
votes
3answers
138 views
Conditional counting in Python
Hello there,
not sure this was asked before, but I couldn't find an obvious answer. I'm trying to count the number of elements in a list that are equal to a certain value. The pro …
1
vote
2answers
139 views
Python: Fast extraction of intersections among all possible 2-combinations in a large number of lists
I have a dataset of ca. 9K lists of variable length (1 to 100K elements). I need to calculate the length of the intersection of all possible 2-list combinations in this dataset. No …
