N

@NandhuTheCoder

Kofax

C#
2 years ago
using System; namespace MyCompiler { class Program { public static void Main(string[] args) { Console.WriteLine("Hello world!"); int n,i;

Repetition of word in a String

C#
3 years ago
using System; namespace MyCompiler { class Program { public static void Main(string[] args) { Console.WriteLine("Hello world!"); string ms = "ababababbaba"; string ss = "aba";

Find the missing Element

C#
3 years ago
using System; using System.Linq; using System.Collections.Generic; namespace MyCompiler { class Program { public static void Main(string[] args) { Console.WriteLine("Hello world!"); method(new int[]{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,22,24,25});

String To Hexa || Hexa to String

C#
3 years ago
using System; using System.Text; using System.Linq; namespace MyCompiler { class Program { public static void Main(string[] args) {

Print Grid

C#
3 years ago
using System; namespace MyCompiler { class Program { public static void Main(string[] args) { Console.WriteLine("Hello world!"); method(3,6); method(4, 1); method(5, 3);

Longest Abecedarian Word

C#
3 years ago
using System; using System.Linq; using System.Collections.Generic; namespace MyCompiler { class Program { public static void Main(string[] args) {

Possible Palindrome

C#
3 years ago
using System; using System.Linq; using System.Collections.Generic; using System.Text.RegularExpressions; namespace MyCompiler { class Program { public static void Main(string[] args) { Console.WriteLine("Hello world!");

Break Point

C#
3 years ago
using System; using System.Linq; using System.Collections.Generic; namespace MyCompiler { class Program { public static void Main(string[] args) { Console.WriteLine("Hello world!"); BreakPoint(159780);

Password Validation

C#
3 years ago
using System; using System.Text.RegularExpressions; namespace MyCompiler { class Program { public static void Main(string[] args) { Console.WriteLine("Hello world!"); proc("sd2ddssds@A"); }

Delegates Tutorial

C#
3 years ago
using System; namespace MyCompiler { class Program { public static void Main(string[] args) { Console.WriteLine("Hello world!"); del obj = new del();

Reverse A String Using Character

C#
3 years ago
using System; namespace MyCompiler { class Program { public static void Main(string[] args) { Console.WriteLine("Hello world!"); char[] arr = new char[] {'A','B','C','D','E'}; char v = ' '; for(int j = 0; j < arr.Length - 1;j++)

Enum

C#
3 years ago
using System; using System.Linq; using System.Collections.Generic; namespace MyCompiler { class Program { public static void Main(string[] args) {

Contact List, Sort List by Last Name

C#
3 years ago
using System; using System.Linq; using System.Collections.Generic; namespace MyCompiler { class Program { public static void Main(string[] args) { Console.WriteLine("Hello world!"); reverse(new string[] {"John Locke","Thomas Aquinas","David Hume","Rene Descartes"}, "ASC");

Find an Anagram of a String in Another String

C#
3 years ago
using System; using System.Collections.Generic; using System.Linq; namespace MyCompiler { class Program { public static void Main(string[] args) {

String Incrementer

C#
3 years ago
using System; using System.Linq; namespace MyCompiler { class Program { public static void Main(string[] args) { Console.WriteLine("Hello world!".Substring(0,3)); mth("foo"); mth("foobar0009");

True Alphabetical Order

C#
3 years ago
using System; using System.Linq; using System.Collections.Generic; namespace MyCompiler { class Program { public static void Main(string[] args) { Console.WriteLine("Hello world!"); trueorder("hello world");

Sort Array using Basic for loop

C#
3 years ago
using System; namespace MyCompiler { class Program { public static void Main(string[] args) { Console.WriteLine("Hello world!"); sortt(new int[]{1,232,555,6,7,7}); }

Maximum Occurrence of character

C#
3 years ago
using System; using System.Linq; using System.Collections.Generic; namespace MyCompiler { class Program { public static void Main(string[] args) { Console.WriteLine("Hello world!"); maxrepeat("system admin ");

Keeping Count

C#
3 years ago
using System; using System.Linq; namespace MyCompiler { class Program { public static void Main(string[] args) { DigitCount(221333); DigitCount(136116); DigitCount(3410515780);

Briefcase Lock

C#
3 years ago
using System; using System.Linq; namespace MyCompiler { class Program { public static void Main(string[] args) { MinTurns("4089", "5672"); MinTurns("1111", "1100"); MinTurns("2391", "4984");