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
  • 4 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

Related Questions

I am new to Silverlight and have decided to give it a go. I
I have this function which used to work, but apparently decided to take a
I have decided to add some validation to my combobox, what I'm trying to
I have decided to start using unit testing in PL/SQL, since it could be
I have decided to develop a (Unicode) spell checker for my final year project
We have decided to work with the Insert Framework Here We'll most likely update
Now that I have decided upon Firebird , with the help of StackOverflow :),
I have a class that has an inner struct/class (I have decided which yet,
I have started a new web application and have decided to use jquery as
I have built a site which requires user to login. Now I have decided

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.