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 a given array of integers and return true if the array contains 10 or 20 twice


C# Sharp Basic Algorithm: Exercise-100 with Solution

Write a C# Sharp program to check a given array of integers and return true if the array contains 10 or 20 twice. The length of the array will be 0, 1, or 2.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Check a given array of integers and return true if the array conains 10 or 20 twice.

Sample Solution:-

C# Sharp Code:

using System;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {
          
          Console.WriteLine(test(new[] { 12, 20 })); 
          Console.WriteLine(test(new[] { 20, 20 })); 
          Console.WriteLine(test(new[] { 10, 10 }));
          Console.WriteLine(test(new[] { 10 })); 
          
        }
        
       public static bool test(int[] nums)
          {
            return nums.Length == 2
                && ((nums[0] == 10 && nums[1] == 10)
                     || (nums[0] == 20 && nums[1] == 20));
          } 
   }
}

Sample Output:

False
True
True
False

Flowchart:

C# Sharp: Flowchart: Check a given array of integers and return true if the array conains 10 or 20 twice.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to create a new array of integers and length 1 or more. The length of the new array will be double length of the given array and all the elements are 1 except the first  element which is equal to the given array.
Next: Write a C# Sharp program to check a given array of integers, length 3 and create a new array. If there is a 5 in the given array immediately followed by a 7 then set 7 to 1.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.