Re: [Tutor] Hash map and dictionaries

2013-12-02 Thread Danny Yoo
> > It is also said that in a list of may be 10,000 elements(specifically > integers), hash maps would be a better option to find the occurrence of > repetitive integers > There's a lot of passive voice here, so I have no idea who you mean by this. Attribution would be nice; otherwise, it almost

Re: [Tutor] Hash map and dictionaries

2013-12-02 Thread Steven D'Aprano
On Sun, Dec 01, 2013 at 09:10:42PM +0530, Reuben wrote: > Hi > > Question 1: > - > I would like to know the concept of hash map. Additionally, I got to know > that hash maps are equivalent to dictionaries in python. > > I would like to understand the relationship between dictiona

Re: [Tutor] Hash map and dictionaries

2013-12-01 Thread Devin Jeanpierre
On Sun, Dec 1, 2013 at 7:40 AM, Reuben wrote: > Hi > > Question 1: > - > I would like to know the concept of hash map. Additionally, I got to know > that hash maps are equivalent to dictionaries in python. > > I would like to understand the relationship between dictionaries and ha

[Tutor] Hash map and dictionaries

2013-12-01 Thread Reuben
Hi Question 1: - I would like to know the concept of hash map. Additionally, I got to know that hash maps are equivalent to dictionaries in python. I would like to understand the relationship between dictionaries and hash map better. Question 2: -- It is also sa