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 8382469
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T16:56:06+00:00 2026-06-09T16:56:06+00:00

Suppose I have a list where each index is either a name, or a

  • 0

Suppose I have a list where each index is either a name, or a list of rooms the preceding name index reserved.

[["Bob"],["125A, "154B", "643A"],["142C", "192B"], ["653G"], 
["Carol"], ["95H", 123C"], ["David"], ["120G"]]

So in this case, Bob has the rooms: 125A, 154B, 643A, 152C, 192B, and 653G reserved, etc.

How do I construct a function which would make the above into the following format:

[["Bob", "125A, "154B", "643A", "142C", "192B", "653G"], ["Carol"... 

Essentially concatenating [name] with all the [list of room reservations], until the next instance of [name]. I have a function which takes a list, and returns True if a list is a name, and False if it is a list of room reservations, so effectively I have:

[True, False, False, False, True, False, True False] for the above list, but not sure how that would help me, if at all. Assume that if a list contains names, it only has one name.

  • 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-09T16:56:07+00:00Added an answer on June 9, 2026 at 4:56 pm

    Given the following method

    def is_name(x):
      return # if x is a name or not
    

    a simply and short solution is to use a defaultdict


    Example:

    from collections import defaultdict
    
    def do_it(source):
      dd = defaultdict(lambda: [])
      for item in sum(source, []): # just use your favourite flattening method here
        if is_name(item):
          name = item
        else:
          dd[name].append(item)
      return [[k]+v for k,v in dd.items()]
    
    for s in do_it(l):
      print s
    

    Output:

    [‘Bob’, ‘125A’, ‘154B’, ‘643A’, ‘142C’, ‘192B’, ‘653G’]
    [‘Carol’, ’95H’, ‘123C’]
    [‘David’, ‘120G’]


    Bonus:

    This one uses a generator for laziness

    import itertools 
    
    def do_it(source):
      name, items = None, []
      for item in itertools.chain.from_iterable(source):
        if is_name(item):
          if name: 
            yield [name] + items
            name, items = None, []
          name = item
        else:
          items.append(item)
      yield [name] + items
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I have a list box with different items, each with unique values, and
Suppose I have a list of strings where each string is exactly 4 characters
Suppose we have 5 checkboxes and each has unique value mapped with respective list
Suppose I have a List[Int] , and I want to call toString on each
Suppose I have a list, called elements , each of which does or does
Suppose you have a List<Elements> in memory and a List<Files> , each of which
Suppose I have a list of dates in the string format, 'YYYYMMDD.' How do
Suppose I have a list, in which no new nodes are added or deleted.
Suppose I have a list (or Set): List<String> testList = Lists.newArrayList(assocX,srcT,destA,srcX, don't care Y,
Suppose I have a list X = [a, b, c] where a, b, c

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.