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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T04:01:37+00:00 2026-05-11T04:01:37+00:00

I have decided to take up f# as my functional language. My problem: Give

  • 0

I have decided to take up f# as my functional language.

My problem: Give a bunch of 50digits in a file, get the first 10 digits of the sum of each line. (euler problem for those who know)

for example (simplified): 1234567890

The sum is 45
The first ‘ten’ digits or in our case the ‘first’ digit is 4.

Heres my problem, I read my file of numbers, I can split it using ‘\n’ and now i have each line, and then I try to convert it to an char array, but the problem comes here. I can’t access each element of that array.

let total =     lines.Split([|'\n'|])     |> Seq.map  (fun line -> line.ToCharArray())     |> Seq.take 1     |> Seq.to_list       |> Seq.length 

I get each line, convert it to array, i take the first array (for testing only), and i try to convert it to list, and then get the length of the list. But this length is the length of how many arrays i have (ie, 1). It should be 50 as thats how many elements there are in the array.

Does anyone know how to pipeline it to access each char?

  • 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. 2026-05-11T04:01:37+00:00Added an answer on May 11, 2026 at 4:01 am

    My final answer:

    let total =     lines.Split([|'\n'|])     |> Seq.map (fun line -> line.ToCharArray() |> Array.to_seq)           |> Seq.map (fun eachSeq -> eachSeq                                 |> Seq.take 50 //get rid of the \r                                |> Seq.map (fun c -> Double.Parse(c.ToString()))                                |> Seq.skip 10                                |> Seq.sum                                                                )     |> Seq.average 

    is what i got finally and it’s working :).

    Bascially after I convert it to charArray, i make it a sequence. So now i have a sequence of sequence. Then I can loop through each seqquence.

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

Sidebar

Ask A Question

Stats

  • Questions 83k
  • Answers 83k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The basic function would be this: string = string.replace(/[^a-zA-Z0-9]/g, '')… May 11, 2026 at 4:53 pm
  • Editorial Team
    Editorial Team added an answer I don't know if VBScript has some kind of a… May 11, 2026 at 4:53 pm
  • Editorial Team
    Editorial Team added an answer base on work from : William Brendel, here is the… May 11, 2026 at 4:53 pm

Related Questions

I have created a dynamic typing system in C in order to create a
Can I really do this? As I am reading up on virtualization, I am
I'm currently refactoring some code on a project that is wrapping up, and I
I will be entering my third year of university in my next academic year,

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.