Skip to content

Instantly share code, notes, and snippets.

View Retterath's full-sized avatar
🙉
Dont give bugs places to hide.

tmrtrt Retterath

🙉
Dont give bugs places to hide.
View GitHub Profile
@Retterath
Retterath / Vacation
Created September 23, 2018 13:05
03. Vacation (Intro and Basic Syntax - Exercise)
using System;
namespace Vacation
{
class Program
{
static void Main()
{
double AmountOfPeople = double.Parse(Console.ReadLine());
string Group = Console.ReadLine();
@Retterath
Retterath / Password validator
Created October 21, 2018 18:13
Password validator (experiment)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Password_Validator
{
class Program
{
@Retterath
Retterath / Palindrome
Created October 22, 2018 08:18
Check if the given input is Palindrome (experiment)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Palindrome_Integers
{
class Program
{
@Retterath
Retterath / Train
Created October 27, 2018 10:31
Train (not completed)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Train
{
class Program
{
@Retterath
Retterath / Experiment
Created October 29, 2018 14:32
StackOverflow
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AppendArrays
{
class Program
{
@Retterath
Retterath / Count Chars in a String
Created November 7, 2018 09:22
Count Chars in a String
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CharInString
{
class Program
{
@Retterath
Retterath / No such
Created July 12, 2019 16:39
Moving characters ASCII up and down depending if the input is valid
using System;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
namespace ConcertRegex
{
class Program
{
static void Main(string[] args)
@Retterath
Retterath / No such
Created July 12, 2019 16:40
Time for some music, right?
using System;
using System.Collections.Generic;
using System.Linq;
namespace December2018
{
class Program
{
static void Main()
{
@Retterath
Retterath / Code
Created August 1, 2019 12:47
Code for a concert organisation/Can be improved with private functions/Comments included
namespace ExamPreparation
{
using System;
using System.Collections.Generic;
using System.Linq;
class Program
{
static void Main(string[] args)
@Retterath
Retterath / Arithmetics with Func & Action
Created August 8, 2019 05:42
This program is useful for learning the basics of the function and action.
using System;
using System.Linq;
namespace AppliedArithmetics
{
class Program
{
static void Main(string[] args)
{
int[] input = Console.ReadLine()