A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write a C# Sharp program to check a given array of integers and return true if the given array contains two 5's next to each other, or two 5 separated by one element
Q:

Write a C# Sharp program to check a given array of integers and return true if the given array contains two 5's next to each other, or two 5 separated by one element

0

Write a C# Sharp program to check a given array of integers and return true if the given array contains two 5's next to each other, or two  5 separated by one element

Sample Output:

True
False
True
True

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

using System;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {               
         Console.WriteLine(test(new[] { 5, 5, 1, 5, 5 })); 
         Console.WriteLine(test(new[] { 1, 2, 3, 4 })); 
         Console.WriteLine(test(new[] { 3, 3, 5, 5, 5, 5})); 
         Console.WriteLine(test(new[] { 1, 5, 5, 7, 8, 10})); 
        }           
       static bool test(int[] numbers)
         {
           int len = numbers.Length;

            for (int i = 0; i < len - 1; i++)
            {
                if (numbers[i] ==5 && numbers[i + 1] == 5) return true;
                if (i + 2 < len && numbers[i] == 5 && numbers[i + 2] == 5) return true;
            }

            return false;
         }    
   } 
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now