Skip to content

Instantly share code, notes, and snippets.

View chapeti's full-sized avatar
🕓
Working from home

Ricardo Sebastián Guerrero chapeti

🕓
Working from home
View GitHub Profile
@chapeti
chapeti / Program.cs
Last active September 28, 2015 03:07
using System;
using System.Linq;
namespace HexactaChallenge
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("9, 22, 1, 3 = " + Min(new[] { 9, 22, 1, 3 }));
Console.WriteLine("10, 1, 1, 1, 1, 14 = " + Min(new[] { 10, 1, 1, 1, 1, 14 }));