Skip to content

Instantly share code, notes, and snippets.

View GuruRAM's full-sized avatar

Andrey Ti GuruRAM

View GitHub Profile
using System.Collections.Generic;
using System.IO;
using System;
class Solution
{
// Complexity n*n*n*m
// Complete the sherlockAndAnagrams function below.
static int sherlockAndAnagrams(string s)
@GuruRAM
GuruRAM / program.cs
Last active March 8, 2019 16:56
Array Manipulation
using System.CodeDom.Compiler;
using System.Collections.Generic;
using System.Collections;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Runtime.Serialization;
@GuruRAM
GuruRAM / algo.cs
Last active March 7, 2019 21:57
Algo.cs
using System;
using System.Collections.Generic;
using System.Linq;
namespace AlgoSolution
{
class Program
{
static void Main(string[] args)
{