vote up 1 vote down star

Hi, 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?

flag

Its not very clear what you're asking for. Could you rephrase your question in the form of "here's my input [ . . . ], here's my desired output [ . . . ]" – Juliet Feb 8 at 0:44

4 Answers

vote up 0 vote down

I copied the data into a string, each line separated by x. Then the answer is one line (wrapped for SO):

let ans13 = data |> String.split ['x'] |> Seq.map Math.BigInt.Parse 
                                                      |> Seq.reduce (+)

If you are reading it from a file, you'd add the file reading code:

let ans13 = IO.File.ReadAllLines("filename") |> Seq.map Math.BigInt.Parse
                                                            |> Seq.reduce (+)

Edit: Actually, I'm not sure we're talking about the same Euler problem -- this is for 13, but your description sounds slightly different. To get the first 10 digits after the summing, do:

printfn "%s" <| String.sub (string ans13) 0 10
link|flag
vote up 3 vote down

I'm not 100% sure what you're asking for, but I believe you're trying to write something like this:

lines.Split([|'\n'|) |> Seq.map (fun line -> line.Length)

This converts each line to a sequence of integers representing the length of each line.

link|flag
00000000 11111111 22222222 It will take each line and get the length of that line which is not what I am looking for. I was looking to convert "00000000" to '0', '0', '0' and so on, and then to 000000000 (int). i've posted my answer now I have figured it out.thanks :) – masfenix Feb 8 at 1:16
I know what you mean now, but it didnt work. If you try it you'll know what i mean (or maybe I explained the question wrong) – masfenix Feb 8 at 1:18
Your way is okay now, but I don't need the length. I needed to work with the string thats pure digits and convert it to integers. – masfenix Feb 8 at 1:20
vote up 4 vote down

Seq.take is still returning a seq<char array>. To get only the first array you could use Seq.nth 0.

link|flag
I know, i've posted a new answer. Thanks for your help :) – masfenix Feb 8 at 1:17
vote up 4 vote down

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.

link|flag
You shouldn't need Array.to_seq - Seq.length works for arrays as well. – dahlbyk Feb 8 at 0:41
A char array is already a sequence. What you've written is equivalent to lines.Split([|'\n'|]) |> Seq.map (fun line -> line.Length) – Juliet Feb 8 at 0:41
Your way is okay now, but I don't need the length. I needed to work with the string thats pure digits and convert it to integers. – masfenix Feb 8 at 1:19
Also note that you could merge those two top-level Seq.maps if you wanted to. – Nathan Sanders Feb 8 at 20:20
You could use a String as Delimiter for string.Split to get rid of the "\r" too. lines.Split([|"\r\n"|], System.StringSplitOptions.None) – David Klein Feb 9 at 21:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.