Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C# Sharp Basic Algorithm Exercises: Check whether a triple is presents in an array of integers or not


C# Sharp Basic Algorithm: Exercise-39 with Solution

Write a C# Sharp program to check whether a triple is presents in an array of integers or not. If a value appears three times in a row in an array it is called a triple.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Check if a triple is presents in an array of integers or not.

Sample Solution:-

C# Sharp Code:

using System;
using System.Linq;
namespace exercises
{
   class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(test(new[] { 1, 1, 2, 2, 1 }));
            Console.WriteLine(test(new[] { 1, 1, 2, 1, 2, 3 }));
            Console.WriteLine(test(new[] { 1, 1, 1, 2, 2, 2, 1 }));
            Console.ReadLine();
        }
        public static bool test(int[] nums)
        {
            int arra_len = nums.Length - 1, n = 0;
			for (int i = 0; i < arra_len; i++)
            {
                 n = nums[i];
				if (n == nums[i + 1] && n == nums[i + 2]) return true;
            }
            return false;
        }
    }
}

Sample Output:

False
False
True

Flowchart:

C# Sharp: Flowchart: Check if a triple is presents in an array of integers or not.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to count the number of two 5's are next to each other in an array of integers. Also count the situation where the second 5 is actually a 6.
Next: Write a C# Sharp program to compute the sum of the two given integers. If the sum is in the range 10..20 inclusive return 30.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.