Skip to content

Instantly share code, notes, and snippets.

Sing, Sing, Sing - Benny Goodman & His Orchestra (1937)
Take The A Train - Duke Ellington (1941)
In The Mood - Glenn Miller Band (1939)
Begin The Beguine - Artie Shaw & His Orchestra (1938)
Lover Man (Oh Where Can You Be) - Billie Holiday (1944)
White Christmas - Bing Crosby (1942)
Stardust - Artie Shaw & His Orchestra (1940)
I'll Never Smile Again - Tommy Dorsey Orch. w/F. Sinatra & Pied Pipers (v) (1940)
Mack The Knife - Louis Armstrong (1955)
Chattanooga Choo-Choo - Glenn Miller Band, w/Tex Benecke & The Modernaires (v) (1941)
javascript:(function(){if(!(window.location.host.indexOf('you')>-1 && window.location.host.indexOf('cookie')<=0)){return;}const sParam=new URL(window.location).searchParams;const v=sParam.get('v');const lst=sParam.get('list');let rst='';if(lst){rst='/videoseries?list='+lst}window.location='https://www.youtube-nocookie.com/embed/'+sParam.get('v')+rst;})();
using System;
using System.Collections.Generic;
public class Program
{
public static void Main()
{
Console.WriteLine("Hello World");
Program prog = new Program();
foreach (var even in prog.GetEvenNumbers(10000000))
static int avoidObstacles(int[] obs)
{
// Insert all array elements in a hash table
// and find the maximum value in the array
HashSet<int> hs = new HashSet<int>(); //HashSet contains no duplicate elements, and whose elements are in no particular order.
int max = obs[0];
for (int i = 0; i < obs.Length; i++)
{
hs.Add(obs[i]);
max = Math.Max(max, obs[i]);
## Mounting current directory to docker.
## Open cmd -> navigate to the folder you want to mount.
## eg: CD D:\Test
## once you see D:\Test> execute the below command
docker run --rm -it -v %cd%:/usr/src/project -p 8888:8888 tensorflow/tensorflow:latest-py3
static string isBalanced(string str) {
Stack<char> stk = new Stack<char>();
foreach(var s in str)
{
if(s == '(' || s == '[' || s == '{')
{
//push to stack
stk.Push(s);
}
//Problem statement..
//https://www.hackerrank.com/challenges/insert-a-node-at-the-tail-of-a-linked-list/problem
using System.CodeDom.Compiler;
using System.Collections.Generic;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
Using System;
public static void Main()
{
Console.WriteLine("Hello");
}