Skip to content

Instantly share code, notes, and snippets.

@cymruu
Created October 18, 2017 20:49
Show Gist options
  • Save cymruu/d46c5dec08a64ef7dd60a63f10943c3c to your computer and use it in GitHub Desktop.
Save cymruu/d46c5dec08a64ef7dd60a63f10943c3c to your computer and use it in GitHub Desktop.
using System;
public class Test
{
public static void Main()
{
string password = "fi";
for(int i=0;i<password.Length;i++){
for(char c = 'a'; c<='z'; c++){
Console.WriteLine(c);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment