Guest User

Untitled

a guest
Jul 19th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. // Problem 1 – Motor Sport Scores
  2. "10,5,0,8,10,1,4,0,10,1"
  3. .Split(',')
  4. .Select(Int32.Parse)
  5. .OrderBy(x=>x)
  6. .Skip(3)
  7. .Sum()
Add Comment
Please, Sign In to add comment