0
votes
3answers
71 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 …
6
votes
6answers
208 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
124 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
132 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 …
0
votes
1answer
55 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?
2
votes
3answers
175 views
Efficient queue in Haskell.
How can I efficiently implement a list data structure where I can have 2 views to the head and end of the list, that always point to a head a tail of a list without expensive calls …
0
votes
2answers
48 views
Java Dropdown Checklist
I understand how to make a multiple-select list box using JLists but I want to add JCheckBoxes to the list and make it dropdown like. The best visual representation I have found on …
0
votes
0answers
14 views
Need Help in List Destroy function
Hi all,
I am writing a storage allocator using the First Fit Algorithm and would like to free up memory I have obtained from the system before quitting. So I have this list of 'f …
2
votes
4answers
189 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/',
…
1
vote
2answers
62 views
Prolog Problem with combinding predicates that work on their own
Here we go, bear 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
5answers
110 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 …
0
votes
2answers
49 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 …
0
votes
2answers
131 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.
2
votes
2answers
154 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
4answers
44 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 …
