Tagged Questions

2
votes
4answers
99 views

Python : List of dict, if exists increment a dict value, if not append a new dict

I would like do something like that. list_of_urls = ['http://www.google.fr/', 'http://www.google.fr/', 'http://www.google.cn/', 'http://www.google.com/', …
0
votes
4answers
37 views

How do I show X number of LI from a list using javascript (no frameworks)?

I have a menu that is being populated by a server and I have no access to the server. So I am limited to doing this on the client side. Right now there is a dropdown menu on the …
0
votes
7answers
75 views

Deleting from dict if found in new list in Python

Say I have a dictionary with whatever number of values. And then I create a list. If any of the values of the list are found in the dictionary, regardless of whether or not it is a …
1
vote
5answers
93 views

How do I prevent a line break occurring before an unordered list?

My web-app framework renders form errors for each field in an unordered list <UL> immediately following the invalid field. My problem is that I haven't been able to style thi …
1
vote
5answers
100 views

Removing duplicates from a list with “priority”

Given a collection of records like this: string ID1; string ID2; string Data1; string Data2; // : string DataN Initially Data1..N are null, and can pretty much be ignored for th …
0
votes
1answer
14 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 …
2
votes
2answers
136 views

Combining 2 lists in python

I have 2 lists each of equal size and am interested to combine these two lists and write it into a file. alist=[1,2,3,5] blist=[2,3,4,5] --the resulting list should be like …
0
votes
2answers
67 views

Prolog Find the longest list in a list of lists

I have a list of lists, and I need to find the longest one of them. If there are more than one with the same length it's the same which it returns. Thanks.
1
vote
5answers
98 views

how to handle large lists of data

We have a part of an application where, say, 20% of the time it needs to read in a huge amount of data that exceeds memory limits. While we can increase memory limits, we hesitate …
2
votes
4answers
120 views

Can I zip more than two lists together in Scala?

Given the following Scala List: val l = List(List("a1", "b1", "c1"), List("a2", "b2", "c2"), List("a3", "b3", "c3")) How can I get: List(("a1", "a2", "a3"), ("b1", "b2", "b3"), …
-2
votes
1answer
49 views

Linq to generic list?

Hey, in my DAL I have 3-5 Lists of something: List<User>, List<Items>, List<bla> Now I want to modify these Lists generic in a method. How can I write a meth …
0
votes
2answers
32 views

Inserting items in a list that is frequently insertion sorted

I have a list that is frequently insertion sorted. Is there a good position (other than the end) for adding to this list to minimize the work that the insertion sort has to do?
0
votes
1answer
40 views

Is there a way to inspect the (differing) internal structures of Python objects that test as equal (==)?

Yesterday I asked ("A case of outwardly equal lists of sets behaving differently under Python 2.5 (I think …)") why list W constructed as follows: r_dim_1_based = range( 1, dim + …
1
vote
2answers
39 views

Prolog Problem with combinding predicates that work on their own

Here we go, bare with me. The over all goal is to return the max alignment between two lists. If there are more than one alignment with the same length it can just return the first …
1
vote
2answers
52 views

Prolog A predicate for alignment

By alignment I mean that the predicate takes in two lists, well three with the alignment list. And then check that every item in the alignment list is indeed an element in both the …

1 2 3 4 5 21 next
15 30 50 per page