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

  • SEARCH
  • Home
  • 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 4590768
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T22:17:57+00:00 2026-05-21T22:17:57+00:00

Bit unsure on how to phrase this properly, so bear with me! Given a

  • 0

Bit unsure on how to phrase this properly, so bear with me!

Given a list [1,2,3,4] I want a list of tuples of lists, like so: [([1],[2,3,4]),([1,2],[3,4]),([1,2,3],[4])].

A part B of the question would be to get all possible orderings inside sublists too. So in the case of the first tuple, I’d want the 2 3 4 in the order 243, 324, 432, 423…

Yes, I like non-determinism.

  • 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-05-21T22:17:57+00:00Added an answer on May 21, 2026 at 10:17 pm
    import Data.List (inits, tails, permutations)
    import Control.Arrow (first, second)
    
    parta :: [a] -> [([a], [a])]
    parta [] = []
    parta xs = init . tail $ zip (inits xs) (tails xs)
    

    For part b, I’m not sure whether you want [([1],[2,3,4]), ([1],[3,4,2]), ...] or [([1],[[2,3,4],[3,4,2],...]), ...]. If the latter, then

    partb :: [a] -> [([a], [[a]])]
    partb = map (second permutations) . parta
    

    Edit: Oh, but you want the former. In that case

    partb :: [a] -> [([a], [a])]
    partb = map (uncurry zip . first repeat . second permutations) . parta
    

    Final edit: As I’ve already used a couple of functions from Control.Arrow, I’ll note that zip (inits xs) (tails xs) can also be written as (inits &&& tails) xs, but I’m not sure it’s clearer that way.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a question regarding this database design. I am a bit unsure of
This might seem like a trivial question, but I'm a bit muddled in my
A bit of a neophyte haskell question, but I came across this example in
This is more a theoretical question than a practical one, but given I undestand
Bit of an obscure one this. My setup is all running on my local
A bit new with WPF...It seems like not matter what I change with horizontal
This is a bit of a long shot, but if anyone can figure it
I'm a little bit unsure about when it's appropriate to use Html.RenderAction() to render
I am using NHibernate with mySQL 5 and I am a bit unsure whether
I'm coding in Erlang and a I am bit unsure about how to approach

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.