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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T09:41:21+00:00 2026-06-01T09:41:21+00:00

Scenario: If there is an array of integers and I want to get array

  • 0

Scenario:
If there is an array of integers and I want to get array of integers in return that their total should not exceed 10.

I am a beginner in Haskell and tried below. If any one could correct me, would be greatly appreciated.

numbers :: [Int]
numbers = [1,2,3,4,5,6,7,8,9,10, 11, 12]

getUpTo :: [Int] -> Int -> [Int]
getUpTo (x:xs) max =
    if max <= 10
    then
            max = max + x
            getUpTo xs max
    else
            x

Input

getUpTo numbers 0

Output Expected

[1,2,3,4]
  • 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-01T09:41:22+00:00Added an answer on June 1, 2026 at 9:41 am

    There is an answer with a fast version; however, I thought it might also be instructive to see the minimal change necessary to your code to make it work the way you expect.

    numbers :: [Int]
    numbers = [1,2,3,4,5,6,7,8,9,10, 11, 12]
    
    getUpTo :: [Int] -> Int -> [Int]
    getUpTo (x:xs) max =
        if max < 10 -- (<), not (<=)
        then
                -- return a list that still contains x;
                -- can't reassign to max, but can send a
                -- different value on to the next
                -- iteration of getUpTo
                x : getUpTo xs (max + x)
        else
                [] -- don't want to return any more values here
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a .NET build-in method that would solve my scenario? Got an array
Scenario : There is this online questionaire that will be filled in by various
Are there any security exploits that could occur in this scenario: eval(repr(unsanitized_user_input), {__builtins__: None},
In my project there is a scenario that user will log in -> browse
Here's the scenario: I want define a base class that allocate some buffer once
I have a 2D array that holds unique integers - this represents a physical
Scenario: there is a global array $cache . there is 1 function, cacheWriter() ,
Scenario: There is a website with 700-900 concurrent unique visitors at any given time.
scenario : there is some pages [ example home ,about us ,contact us etc]
I am trying to build a service/API. In my scenario there will be a

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.