Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- List<int> secuencia1 = new List<int>(){3, 7, 11, 13, 19};
- List<int> secuencia2 = new List<int>(){2, 5, 3, 17, 11};
- // Valores mínimos:
- secuencia1.Zip(secuencia2, (valorSecuencia1, valorSecuencia2) =>
- Math.Min(valorSecuencia1, valorSecuencia2)
- ).Dump("Valores Máximos");
- // Valores máximos:
- secuencia1.Zip(secuencia2, (valorSecuencia1, valorSecuencia2) =>
- Math.Max(valorSecuencia1, valorSecuencia2)
- ).Dump("Valores Máximos");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement