Skip to content

Instantly share code, notes, and snippets.

@ashahzeb
ashahzeb / keybase.md
Last active September 16, 2021 14:10

Keybase proof

I hereby claim:

  • I am ashahzeb on github.
  • I am ashahzeb (https://keybase.io/ashahzeb) on keybase.
  • I have a public key ASBRB601_GLJ2c9iGQPZX4EEc9AfVuqIG2gPd9fv28Qungo

To claim this, I am signing this object:

@ashahzeb
ashahzeb / Pangram.cs
Last active July 13, 2019 17:49
Pangram Check
using System;
public class Program
{
public static void Main()
{
Console.WriteLine(checkPangram("The quick brown fox jumps over the lazy dog"));
}
public static bool checkPangram(string str){