Skip to content

Instantly share code, notes, and snippets.

View fATALeRRoR's full-sized avatar

Andrius Šunauskas fATALeRRoR

View GitHub Profile
@fATALeRRoR
fATALeRRoR / Largest Puddle on a Bar Chart challange
Created April 8, 2015 19:15
Today at James Michael Hare blog new coding challenge was announced. Here is my solution.
using System;
namespace BarChartApplication
{
public class BarChartAnalyzer
{
int[] _Bars;
public BarChartAnalyzer(int[] bars)
{