C#: 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 if a triple is present 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:

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 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.
- Weekly Trends
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join
- JavaScript functions Exercises
- Python Tutorial
- Python Array Exercises
- SQL Cross Join
- C# Sharp Array Exercises
We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook