Skip to content

Instantly share code, notes, and snippets.

View tnayanam's full-sized avatar

Tanuj Nayanam tnayanam

  • Syracuse, NY
View GitHub Profile
@guitarrapc
guitarrapc / AsyncAwaitLambda.cs
Created December 4, 2016 20:32
async / await with AWS Lambda
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Amazon.Lambda.Core;
using Amazon.Lambda.Serialization;
// Assembly attribute to enable the Lambda function's JSON input to be converted into a .NET class.
[assembly: LambdaSerializerAttribute(typeof(Amazon.Lambda.Serialization.Json.JsonSerializer))]
@aaronjwood
aaronjwood / BinarySearchTree.cs
Created February 15, 2016 05:57
Binary search tree implementation in C#
using System;
using System.Diagnostics;
namespace BinarySearchTree
{
class Node
{
public int value;
public Node left;
public Node right;