Skip to main content

Posts

Showing posts from May, 2017

Hacker Rank: 2D Array - DS Solution

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

Stack implementation using C#

A stack is a data structure . And the definition as on Wikipedia: In  computer science , a  stack  is an  abstract data type  that serves as a  collection  of elements, with two principal operations:  push , which adds an element to the collection, and  pop , which removes the most recently added element that was not yet removed. Data structures are so simple if you can understand everything in it. They are just another programs which are tied together with small pieces of implementation.