I'm trying to make a lottery console app, but have a problem with duplicated numbers in some rows. A lottery coupon is 10 row with 7 numbers, min number is 0, max number is 36.
How can i check if the number is exist in same row in my for loop?
here is my code
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Obligatorisk_Opgave_2
{
    class Program
    {
        static void Main(string[] args)
        {
            int min = 0; // minimum number
            int max = 36; // maximum number
            int rows = 10; // number of rows in my copun
            int col = 7; // number of column in my copun
            // Get the date of PC
            string NameDate;
            NameDate = DateTime.Now.ToString("yyyy.MM.dd");
            string Week = "1-uge";
            string ComName = "LYN LOTTO";
            Random rnd = new Random();
            Console.WriteLine("{0,22} \n {1,15} \n{2,18}", NameDate, Week, ComName);
            for (int i = 0; i < rows; i++)
            {
                Console.Write($"{i + 1}.");
                for (int j = 0; j < col; j++)
                    Console.Write("{1,4}", i, rnd.Next(min, max));
                Console.WriteLine();
            }
            Console.WriteLine("***** JOKER TAL *****");
            for (int i = 0; i < 2; i++)
            {
                for (int j = 0; j < col; j++)
                    Console.Write("{0,4}", rnd.Next(1,9));
                Console.WriteLine();
            }
        }
    }
}
 
     
     
     
     
    