0
votes
5answers
66 views
Creating new list with values from two prior lists.
Given the lists list1 and list2 that are of the same length, create a new list consisting of the last element of list1 followed by the last element of list2 , followed by the second to last …
2
votes
8answers
109 views
How do I check the index of a an element in a list? (Python)
list = [('ba',4), ('hh',5), ('gg', 25)]
How do I do:
list.index('hh') ...and returns 1?
Then, how do I sort it by the 25, 5, 4?
What if I have 2 lists:
list1 = [('ba',4), ('hh',5), ('gg', 25)]
…
1
vote
1answer
25 views
Need an advice regarding accessing the database
Suppose I have a Comment class having properties and their methods
like
public Comment GetComment(Guid id)
And
public static List<Comment> GetComments()
public static List<Comment> …
0
votes
3answers
114 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 l[i]==0:
After …
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
{
get { …
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 session variables.
I need …
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 makes a new list, …
-1
votes
4answers
199 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:
def every(f, L): …
1
vote
2answers
56 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]).
speaks(sam [polish, …
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. What's a good way …
0
votes
5answers
168 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 the idiom of setting …
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 every site …
6
votes
6answers
216 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 and return parts) and …
2
votes
3answers
139 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 problem is that these …
0
votes
1answer
75 views
Scheme - how do I modify an individual element in a list?
If I have a list of 0's, how would I modify, for example, the 16th 0 in the list?
