Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Greedy Cow Transport
#18
(Apr-15-2019, 08:42 PM)Truman Wrote: is j value and i key:value pair in your code?

You can easily test what is what Smile

In [1]: from itertools import combinations                                                         

In [2]: d = {'Maggie': 3, 'Herman': 7, 'Betsy': 9, 'Oreo': 6, 'Moo Moo': 3, 'Milkshake': 2,  
   ...:      'Millie': 5, 'Lola': 2, 'Florence': 2, 'Henrietta': 9}                                

In [3]: list(combinations(d, 2))[:5]   # first five combinations to see what we get                                                              
Out[3]: 
[('Maggie', 'Herman'),
 ('Maggie', 'Betsy'),
 ('Maggie', 'Oreo'),
 ('Maggie', 'Moo Moo'),
 ('Maggie', 'Milkshake')]
We get key pair combinations, but they don't have values. With this part we 'put values back and convert to dict': {j: d[j] for j in i} - from each pair we take individual keys and construct new dictionary by getting key and its corresponding value from original dictionary.

For first row in pair combinations ('Maggie', 'Herman'):

{j: d[j] for j in i} --> {'Maggie': d['Maggie'], 'Herman': d['Herman']} --> {'Maggie': 3, 'Herman': 7}
For sake of readabilty the d[j] could be replaced with d.get(j) - this gives better understanding that we will 'get' value of j.
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply


Messages In This Thread
Greedy Cow Transport - by Truman - Apr-08-2019, 10:13 PM
RE: Greedy Cow Transport - by Gribouillis - Apr-08-2019, 10:22 PM
RE: Greedy Cow Transport - by ichabod801 - Apr-08-2019, 10:30 PM
RE: Greedy Cow Transport - by perfringo - Apr-09-2019, 05:19 AM
RE: Greedy Cow Transport - by Skaperen - Apr-09-2019, 05:49 AM
RE: Greedy Cow Transport - by Truman - Apr-09-2019, 10:29 PM
RE: Greedy Cow Transport - by ichabod801 - Apr-09-2019, 10:45 PM
RE: Greedy Cow Transport - by Truman - Apr-09-2019, 10:57 PM
RE: Greedy Cow Transport - by perfringo - Apr-10-2019, 03:28 AM
RE: Greedy Cow Transport - by Truman - Apr-10-2019, 09:33 PM
RE: Greedy Cow Transport - by perfringo - Apr-11-2019, 04:03 AM
RE: Greedy Cow Transport - by perfringo - Apr-11-2019, 11:38 AM
RE: Greedy Cow Transport - by Truman - Apr-11-2019, 11:06 PM
RE: Greedy Cow Transport - by perfringo - Apr-12-2019, 04:40 AM
RE: Greedy Cow Transport - by Truman - Apr-14-2019, 11:18 PM
RE: Greedy Cow Transport - by perfringo - Apr-15-2019, 07:14 AM
RE: Greedy Cow Transport - by Truman - Apr-15-2019, 08:42 PM
RE: Greedy Cow Transport - by perfringo - Apr-18-2019, 10:47 AM
RE: Greedy Cow Transport - by Truman - Apr-18-2019, 02:06 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  How do I correct multiplication error? Greedy algorithm help student8 1 3,927 Oct-02-2017, 03:00 AM
Last Post: Mekire

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020