3
votes
1answer
41 views
Searching the Mac OSX system dictionaries?
I'd like to search for words in the OS X system dictionary (or dictionaries) using a simple glob or regex rather than a known text. (Currently I'm using /usr/share/dict/words inste …
0
votes
8answers
83 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 …
4
votes
6answers
99 views
Is there any benefit to returning a hash constructed with dict rather than just using the curly braces syntax?
In some Python code I've read I keep noticing this code:
return dict(somekey=somevalue)
Does that have any benefit over:
return {somekey:somevalue}
I tend to say no, since bo …
1
vote
6answers
113 views
What .NET dictionary supports a “find nearest key” operation?
I'm converting some C++ code to C# and it calls std::map::lower_bound(k) to find an entry in the map whose key is equal to or greater than k. However, I don't see any way to do the …
2
votes
6answers
140 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 …
0
votes
4answers
100 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
44 views
How to Deserialise Xml into a Dictionary<int,string> object?
Is it possible to Deserialize the following piece of XML into a Dictionary<int,string> object?
XML:
<Config>
<DatabaseConnections>
<Connection Name="So …
0
votes
1answer
27 views
Simple list of sub category
I have a plist with categories :
<array>
<dict>
<key>part</key>
<string>up</string>
<key>house</key>
<array>
<dict&g …
4
votes
7answers
100 views
“Peeking Ahead” while looping through Dictionary Items
This seems like it should be something very easy to do, but every time I approach this issue, I end up w/ solutions that feel "less than elegant"
Here is my basic question: If I …
0
votes
4answers
62 views
Dictionary Operations… Index / Iterate / Validate
I'd like to:
Check a key / value at position i
Check to see if key / value contains a string
delete / store in another variable either the key / value
The equivelant of this Ja …
3
votes
9answers
88 views
Optimizing word count
(This is rather hypothetical in nature as of right now, so I don't have too many details to offer.)
I have a flat file of random (English) words, one on each line. I need to writ …
4
votes
5answers
117 views
Algorithm wanted: Find all words of a dictionary that are similar to words in a free text
We have a list of about 150,000 words, and when the user enters a free text, the system should present a list of words from the dictionary, that are very close to words in the free …
0
votes
4answers
80 views
Remove Item in Dictionary based on Value
I have a Dictionary<string, string>.
I need to look within that dictionary to see if a value exists based on input from somewhere else and if it exists remove it.
ContainsV …
0
votes
3answers
174 views
Finding the highest key
I'm just confused about why my code would not work, here's the question and the code I have so far (the test run says my answer is wrong).
Given the dictionary d, find the largest …
0
votes
3answers
30 views
How to insert values into VB.NET Dictionary on instantiation?
Is there a way that I can insert values into a VB.NET Dictionary when I create it? I can, but don't want to, do dict.Add(int, "string") for each item.
Basically, I want to do "Ho …
