I've been trying to solve the puzzles on HackerRank.com lately. This post is just to solve the problem in Arrays section of Hacker Rank
I feel better to solve the problems though. It certainly improves some area in programming language.
As I'm a C# developer the problem is solved using C# as programming language.
Question: https://www.hackerrank.com/challenges/2d-array
And the solution is
I feel better to solve the problems though. It certainly improves some area in programming language.
As I'm a C# developer the problem is solved using C# as programming language.
Question: https://www.hackerrank.com/challenges/2d-array
And the solution is
This file contains 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
public class ArrayTwoD | |
{ | |
static void Main(string[] args) | |
{ | |
int[][] arr = new int[6][]; | |
for (int arr_i = 0; arr_i < 6; arr_i++) | |
{ | |
string[] arr_temp = Console.ReadLine().Split(' '); | |
arr[arr_i] = Array.ConvertAll(arr_temp, Int32.Parse); | |
} | |
var results = new List<int>(); | |
for (int i = 0; i < 4; i++) //number of iterations of arr | |
{ | |
var firstRow = arr[i]; | |
var secondRow = arr[i + 1]; | |
var thirdRow = arr[i + 2]; | |
for (int j = 0; j < 4; j++) //no. of iterations for each hour glass | |
{ | |
var sum = 0; | |
for (int hourglass = (j + 2); hourglass >= j; hourglass--) | |
{ | |
sum = sum + firstRow[hourglass] + thirdRow[hourglass]; | |
} | |
var k = j + 1; | |
sum += secondRow[k]; | |
results.Add(sum); | |
} | |
} | |
Console.WriteLine(results.Max()); | |
} | |
} |
you are in point of fact a good webmaster. The site loading speed is incredible. It seems that you are doing any distinctive trick. Moreover, The contents are masterpiece. you've performed a excellent task in this topic!
ReplyDeleteWhat's Taking place i'm new to this, I stumbled upon this I have discovered It absolutely helpful and it has helped me out loads. I'm hoping to give a contribution & aid other customers like its aided me. Great job.
ReplyDelete