21
votes
7answers
5k views
How can I merge two Python dictionaries as a single expression?
I have two Python dictionaries, and I want to write a single expression that returns these two dictionaries, merged. The update() method would be what I need, if it returned its result instead of …
12
votes
9answers
2k views
Does C# have a way of giving me an immutable Dictionary?
Is there anything built into the core C# libraries that can give me an immutable Dictionary?
Something along the lines of Java's:
Collections.unmodifiableMap(myMap);
And just to clarify, I am …
11
votes
4answers
2k views
Map two lists into a dictionary in Python
Imagine that you have:
keys = ('name', 'age', 'food')
values = ('Monty', 42, 'spam')
What is the simplest way to produce the following dictionary ?
dict = {'name' : 'Monty', 'age' : 42, 'food' : …
11
votes
13answers
3k views
Duplicate keys in .NET dictionaries?
Are there any dictionary classes in the .NET base class library which allow duplicate keys to be used? The only solution I've found is to create, for example, a class like:
Dictionary<string, …
10
votes
1answer
1k views
Splitting a semicolon-separated string to a dictionary, in Python
I have a string that looks like this:
"Name1=Value1;Name2=Value2;Name3=Value3"
Is there a built-in class/function in Python that will take that string and construct a dictionary, as though I had …
10
votes
10answers
9k views
What is the best way to iterate over a Dictionary in C#?
I've seen a few different ways to iterate over a Dictionary in C#. Is there a standard way?
9
votes
6answers
914 views
Random Python dictionary key, weighted by values
hello,
I have a dictionary where each key had a list of variable length, eg:
d = {
'a': [1, 3, 2],
'b': [6],
'c': [0, 0]
}
Is there a clean way to get a random dictionary key, weighted by the …
9
votes
9answers
506 views
Python: finding keys with unique values in a dictionary?
Hello,
I receive a dictionary as input, and want to return a list of keys for which the dictionary values are unique in the scope of that dictionary.
I will clarify with an example. Say my input is …
9
votes
4answers
2k views
C# DropDownList with a Dictionary as DataSource
I want to set DataTextField and DataValueField of a Dropdownlist (languageList) using a Dictionary (list) of languageCod (en-gb) as key and language name (english) as the text to display.
Relevant …
9
votes
7answers
1k views
Memory efficiency: One large dictionary or a dictionary of smaller dictionaries?
I'm writing an application in Python (2.6) that requires me to use a dictionary as a data store.
I am curious as to whether or not it is more memory efficient to have one large dictionary, or to …
9
votes
4answers
1k views
How to get the FxCop custom dictionary to work?
How is it possible to get the FxCop custom dictionary to work correctly?
I have tried adding words to be recognised to the file 'CustomDictionary.xml', which is kept in the same folder as the FxCop …
9
votes
7answers
543 views
In Python, how can you easily retrieve sorted items from a dictionary?
Dictionaries unlike lists are not ordered (and do not have the 'sort' attribute). Therefore, you can not rely on getting the items in the same order when first added.
What is the easiest way to loop …
8
votes
8answers
320 views
Is there a better, pythonic way to do this?
This is my first python program -
Requirement: Read a file consisting of {adId UserId} in each line. For each adId, print the number of unique userIds.
Here is my code, put together from reading …
8
votes
7answers
277 views
Why cant we change Values of a dictionary while enumerating its keys?
class Program
{
static void Main(string[] args)
{
var dictionary = new Dictionary<string, int>()
{
{"1", 1}, {"2", 2}, {"3", 3}
…
8
votes
2answers
232 views
Hash tables in prolog
I was solving a puzzle in prolog the other day and realized that were I using another programming language, I would have made use of a hash table/dictionary, but as far as I know this isn't really …
