1
vote
8answers
108 views
Searching values of a list in another List using Python
Im a trying to find a sublist of a list. Meaning if list1 say [1,5] is in list2 say [1,4,3,5,6] than it should return True. What I have so far is this:
for nums in l1:
if nums …
2
votes
6answers
139 views
Converting Python Dictionary to List
I'm trying to convert a Python dictionary into a Python list, in order to perform some calculations.
#My dictionary
dict = {}
dict['Capital']="London"
dict['Food']="Fish&Chips …
1
vote
2answers
88 views
Is there a safe way in Scala to transpose a List of unequal-length Lists?
Given the following List:
val l = List(List(1, 2, 3), List(4, 5), List(6, 7, 8))
If I try to transpose it, Scala will throw the following error:
scala> List.transpose(l)
jav …
0
votes
3answers
30 views
Text in Flex’s list
How can locate text in the mx:List like this?
|"text1" "test2"|
-----------------------
|"text3" "text4"|
0
votes
4answers
99 views
Sorting Lists of List of Dictionaries
I've just read in a file that is something like:
name: john, jane
car: db9, m5
food: pizza, lasagne
Each of these rows (names, car, food) are in order of who owns what. Therefor …
0
votes
2answers
14 views
Flex: List displaying wrong until scrolled.
I have a List, that is not showing any items until you scroll, then the items show up. Does anyone know how to fix this? I tried calling list.invalidateDisplayList(); and list.inva …
1
vote
2answers
53 views
Store large lists of data in iPhone app so they are available to the UI
Hi
A bit cryptic, which is also what drives me to start a thread in here, I simply can't find the words to Google the challenge.
Im building an app that will have 2 search views …
3
votes
3answers
138 views
Python: How much space does each element of a list take?
I need a very large list, and am trying to figure out how big I can make it so that it still fits in 1-2GB of RAM. I am using the CPython implementation, on 64 bit (x86_64).
Edit: …
2
votes
9answers
155 views
algorithm for list identification and parsing
I have data which in theory is a list, but historically has been input by the user as a free form text field. Now I need to separate each item of the list so that each element can …
2
votes
5answers
144 views
Quicker ways to search a C# List<String>
I currently have a list called regkey and a string called line_to_delete, which I obviously want to delete from the list. At the moment I'm searching through one element of the lis …
1
vote
4answers
150 views
Fastest Way To Remove Duplicates In Lists Python
I have two very large lists and to loop through it once takes at least a second and I need to do it 200,000 times. What's the fastest way to remove duplicates in two lists to form …
1
vote
5answers
33 views
Performant intersection and distinct element extraction?
I have a line like the following in my code:
potentialCollisionsX.Intersect(potentialCollisionsY).Distinct().ToList();
Which, through profiling, i have determined that it is eat …
0
votes
5answers
94 views
Comparing elements in a list in Python’s for -loop
What is wrong in the method end in the code?
The method end returns always 1 although it should return 0 with the current data.
# return 1 if the sum of four consecutive elements …
0
votes
1answer
46 views
Need help with CSS based absolute positioned UL alignment (dropdown effect)
Hey folks,
I'm trying to a language switching system in this website. The idea is to have a SPAN which upon hover displays a dropdown box (UL based) that contains a list of av …
1
vote
1answer
47 views
Tcl for getting ASCII code for every character in a string
I need to get the ASCII character for every character in a string. Actually its every character in a (small) file. The following first 3 lines successfully pull all a file's cont …
