Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9117809
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T04:59:03+00:00 2026-06-17T04:59:03+00:00

I have an array containing an even number of integers. The array represents a

  • 0

I have an array containing an even number of integers. The array represents a pairing of an identifier and a count. The tuples have already been sorted by the identifier. I would like to merge a few of these arrays together. I have thought of a few ways to do it but they are fairly complicated and I feel there might be an easy way to do this with python.

IE:

[<id>, <count>, <id>, <count>]

Input:

[14, 1, 16, 4, 153, 21]
[14, 2, 16, 3, 18, 9]

Output:

[14, 3, 16, 7, 18, 9, 153, 21]
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T04:59:05+00:00Added an answer on June 17, 2026 at 4:59 am

    It would be better to store these as dictionaries than as lists (not just for this purpose, but for other use cases, such as extracting the value of a single ID):

    x1 = [14, 1, 16, 4, 153, 21]
    x2 = [14, 2, 16, 3, 18, 9]
    
    # turn into dictionaries (could write a function to convert)
    d1 = dict([(x1[i], x1[i + 1]) for i in range(0, len(x1), 2)])
    d2 = dict([(x2[i], x2[i + 1]) for i in range(0, len(x2), 2)])
    
    print d1
    # {16: 4, 153: 21, 14: 1}
    

    After that, you could use any of the solutions in this question to add them together. For example (taken from the first answer):

    import collections
    
    def d_sum(a, b):
        d = collections.defaultdict(int, a)
        for k, v in b.items():
            d[k] += v
        return dict(d)
    
    print d_sum(d1, d2)
    # {16: 7, 153: 21, 18: 9, 14: 3}
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a 1d array containing Nd data, I would like to effectively traverse
I have create an array containing person firstname,lastname and number which i populate in
I have a array containing japanese caracters as well as normal. How do I
I have an array containing a list of files. I want to sort it
I have an array containing specific times and I want when the current time
Ruby 1.8.6 I have an array containing numerical values. I want to reduce it
I have an int array containing gray scale values from 0-254, i also have
I have an array of variables all containing text. I want to select only
I have a simple JavaScript Array object containing a few numbers. [267, 306, 108]
I have an array of Objects, each containing a Location and a Links array

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.