Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

How to check if array contains all elements of a given range in C#

1 Answer

0 votes
using System;

class Program
{
     public static bool check_elements(int []arr, int rang_from, int rang_to) {
        int range = rang_to - rang_from;
        int size = arr.Length;
         
        for (int i = 0; i < size; i++) {
            if (arr[i] >= rang_from && arr[i] <= rang_to) {
                int j = arr[i] - rang_from;
                if (arr[j] > 0) {
                    arr[j] *= -1;
                }
                for (int k = 0; k < size; k++) {
                    Console.Write(arr[k] + " ");
                }
                Console.WriteLine();
            }
        }
      
        for (int i = 0; i < range; i++) {
            if (arr[i] > 0)
                return false;
        }
        return true;
    }
    static void Main() {
        int []arr = {1, 4, 5, 2, 3, 7, 8, 3, 9, 4, 4, 0, 6};
        int rang_from = 3, rang_to = 7; 

        if (check_elements(arr, rang_from, rang_to))
            Console.Write("Yes");
        else
            Console.Write("No");
    }
}




  
/*
run:
        
1 -4 5 2 3 7 8 3 9 4 4 0 6 
1 -4 -5 2 3 7 8 3 9 4 4 0 6 
-1 -4 -5 2 3 7 8 3 9 4 4 0 6 
-1 -4 -5 2 -3 7 8 3 9 4 4 0 6 
-1 -4 -5 2 -3 7 8 3 9 4 4 0 6 
-1 -4 -5 2 -3 7 8 3 9 4 4 0 6 
-1 -4 -5 2 -3 7 8 3 9 4 4 0 6 
-1 -4 -5 -2 -3 7 8 3 9 4 4 0 6 
Yes

*/

 



answered Dec 14, 2021 by avibootz

Related questions

...