This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace variety_numbers | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int[] numbers = new int[10]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace variety_numbers | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int[] numbers = new int[10]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace ht_subarray_repetitions_numbers | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int minRandomNumber = 0; | |
int maxRandomNumber = 9; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace ht_subarray_repetitions_numbers | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int minRandomNumber = 0; | |
int maxRandomNumber = 9; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace HT_DYNAMIC_ARRAY | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double[] numbers = new double[0]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace HT_DYNAMIC_ARRAY | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
double[] numbers = new double[0]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace HW_LOCAL_MAX | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int[] matrix = new int[30]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace HW_LOCAL_MAX | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int[] matrix = new int[30]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace HW_LARGEST_ELEMENT | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int maxElement = int.MinValue; | |
int minRandomNumber = 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace HW_LARGEST_ELEMENT | |
{ | |
internal class Program | |
{ | |
static void Main(string[] args) | |
{ | |
int maxElement = int.MinValue; | |
int minRandomNumber = 0; |
NewerOlder