Pregunta

I have a Seq like this:

[(1, 0, 10); (5, 1, 10); (5, 0, 10); (8, 1, 10); ...]

And I want to decrease the third element in the tuple by one every time the second element is a 1

[(1, 0, 10); (5, 1, 9); (5, 0, 9); (8, 1, 8); ...]

I was thinking Seq.Fold b/c I need an accumulator but I am not sure how to implement. Am I on the right track?

¿Fue útil?

Solución

You just need a map:

[(1, 0, 10); (5, 1, 10); (5, 0, 10); (8, 1, 10); ...] 
|> List.map (function (first,second,third) when second = 1 -> (first,second,third - 1) | other -> other)

Otros consejos

I was close, but using the wrong function

Seq.Scan does the trick....

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top