vote up 1 vote down star

Hi all

Lets say i have a string "COLIN". The numeric value of this string would is worth 3 + 15 + 12 + 9 + 14 = 53.

So A = 1, B = 2, C = 3, and so on.

I have no idea how to even start in f# for this.

let mutable nametotal = 0
let rec tcalculate name =
    name.ToString().ToCharArray()
    |> Seq.length

Here is what I have so far. The seq.lenght is just there for testing to see if the toCharArray actually worked.

flag

4 Answers

vote up 1 vote down check

If the 'mapping' is more arbitrary, you could use a strategy like the code below, where you can specify a data structure of what value each letter maps to.

#light

let table = [
    'C', 3
    'O', 15
    'L', 12
    'I', 9
    'N', 14
    ]

let dictionary = dict table

let Value c = 
    match dictionary.TryGetValue(c) with
    | true, v -> v
    | _ -> failwith (sprintf "letter '%c' was not in lookup table" c)

let CalcValue name =
    name |> Seq.sum_by Value

printfn "COLIN = %d" (CalcValue "COLIN")
link|flag
A question, what does the "let dictionary = dict table" mean.. specifically what does "dict" do in this context? – masfenix Feb 9 at 3:12
'dict' is a function that makes an IDictionary out of a sequence of key-value pairs. research.microsoft.com/en-us/um/… – Brian Feb 9 at 4:31
vote up 2 vote down

What you have is decent; here's another version:

#light

let Value (c:char) = 
    (int c) - (int 'A') + 1

let CalcValue name =
    name |> Seq.sum_by Value

printfn "COLIN = %d" (CalcValue "COLIN")
// may be of interest:
printfn "%A" ("COLIN" |> Seq.map Value |> Seq.to_list)

It assumes the original input is uppercase. "int" is a function that converts a char (or whatever) to an int; Seq.sum_by is perfect for this.

I also show an example of using map, not sure what you're interested in.

link|flag
Thankyou, I guess i'll forget about "mapping" for now.. – masfenix Feb 9 at 2:46
vote up 1 vote down

all you need to do, is make the string lowercase, turn it into a char array like you have done, loop through each letter, take the value of each char and subtract the value of 'a' and add one. that will make each letter have the value of its position in the alphabet.

link|flag
Yea, thats what I came up with, but I am learning the language so I want to if there is a way to do a "mapping" – masfenix Feb 9 at 2:31
vote up 1 vote down

I've found a hackish way to do this using the ascii value of the character, and getting the number from there but i think there might be a better way.

let tcalculate name =
    name.ToString().ToLower().ToCharArray()
    |> Seq.map (fun char -> Convert.ToInt32 char - 96)
    |> Seq.sum

work's beautifully and maybe even more efficient then "mapping" but I'd like to view the solution I asked for

thanks all.

link|flag

Your Answer

Get an OpenID
or

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