Skip to content

Instantly share code, notes, and snippets.

View Chubek's full-sized avatar

Chubak Bidpaa Chubek

View GitHub Profile
@Chubek
Chubek / PigLatin.cs
Created June 25, 2016 20:15
A PigLatin Parser
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PigLatin
{
class Program
{
@Chubek
Chubek / vowelcount.cs
Created June 26, 2016 05:07
Counts Vowels
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CountVowels
{
class Program
{
@Chubek
Chubek / Palindrome.cs
Created June 27, 2016 05:32
Check for Palindrome
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Palindrome_Check
{
class Program
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BlackAndWhiteImage
{
class Program
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZeckendorfRepresentation
{
class Program
def factorial(n):
factorial = 1
for i in range(1, n+1):
factorial *= i
return factorial
def sine(d):
serial = 0
GuardianFlash