Advertisement
Spocoman

07. Equal Arrays

Jan 20th, 2022
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.96 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. namespace SumEvenNumbers
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int[] arrOne = Console.ReadLine()
  11.                 .Split()
  12.                 .Select(int.Parse)
  13.                 .ToArray();
  14.  
  15.             int[] arrTwo = Console.ReadLine()
  16.                .Split()
  17.                .Select(int.Parse)
  18.                .ToArray();
  19.  
  20.             if (arrOne.SequenceEqual(arrTwo))
  21.             {
  22.                 Console.WriteLine($"Arrays are identical. Sum: {arrOne.Sum()}");
  23.             }
  24.             else
  25.             {
  26.                 for (int i = 0; i < arrOne.Length; i++)
  27.                 {
  28.                     if (arrOne[i] != arrTwo[i])
  29.                     {
  30.                         Console.WriteLine($"Arrays are not identical. Found difference at {i} index");
  31.                         break;
  32.                     }
  33.                 }
  34.             }
  35.         }
  36.     }
  37. }
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement