Ejemplo n.º 1
0
        public void Coin_OtherInstanceIsLocked_ReturnFalse()
        {
            t.Coin();
            Turnstile t1 = new Turnstile();

            Assert.That(t1.Locked(), Is.False);
        }
        //
        // responds to Pass event
        //
        public override void Pass(Turnstile name)
        {
            name.Lock();

            // change the state
            name.SetState(name.GetItsLockedState());
        }
Ejemplo n.º 3
0
        public void Coin_OtherInstanceIsAlarm_ReturnFalse()
        {
            t.Coin();
            Turnstile t1 = new Turnstile();

            Assert.That(t1.Alarm(), Is.False);
        }
Ejemplo n.º 4
0
        public void Pass_OtherInstanceIsLocked_ReturnTrue()
        {
            t.Pass();
            Turnstile t1 = new Turnstile();

            Assert.That(t1.Locked(), Is.True);
        }
Ejemplo n.º 5
0
        public void Coin_OtherInstanceCoins_Get1Coin()
        {
            t.Coin();
            Turnstile t1 = new Turnstile();

            Assert.That(1, Is.EqualTo(t1.Coins));
        }
        public void TestInit()
        {
            Turnstile t = new Turnstile();

            Assert.IsTrue(t.Locked());
            Assert.IsFalse(t.Alarm());
        }
Ejemplo n.º 7
0
        public void Pass_OtherInstanceIsAlarm_ReturnTrue()
        {
            t.Pass();
            Turnstile t1 = new Turnstile();

            Assert.That(t1.Alarm(), Is.True);
        }
        //
        // responds to Coin event
        //
        public override void Coin(Turnstile name)
        {
            name.Thankyou();

            // change the state
            name.SetState(name.GetItsUnlockedState());
        }
Ejemplo n.º 9
0
 public void Reset()
 {
     Lock(true);
     Alarm(false);
     itsCoins   = 0;
     itsRefunds = 0;
     itsState   = LOCKED;
 }
Ejemplo n.º 10
0
        public void CancelAlarm_OtherInstanceIsLocked_ReturnFalse()
        {
            t.Pass();
            t.Coin();
            Turnstile t1 = new Turnstile();

            Assert.That(t1.Alarm(), Is.False, "locked");
        }
Ejemplo n.º 11
0
        public void CoinAndPass_OtherInstanceCoins_Get1Coin()
        {
            t.Coin();
            t.Pass();
            Turnstile t1 = new Turnstile();

            Assert.That(1, Is.EqualTo(t1.Coins), "coins");
        }
Ejemplo n.º 12
0
        public void TwoCoins_OtherInstanceIsLocked_ReturnFalse()
        {
            t.Coin();
            t.Coin();
            Turnstile t1 = new Turnstile();

            Assert.That(t1.Locked(), Is.False, "unlocked");
        }
Ejemplo n.º 13
0
        public void TwoCoins_OtherInstanceRefunds_Get1Refund()
        {
            t.Coin();
            t.Coin();
            Turnstile t1 = new Turnstile();

            Assert.That(1, Is.EqualTo(t1.Refunds), "refunds");
        }
Ejemplo n.º 14
0
        public void CancelAlarm_OtherInstanceRefunds_NoRefund()
        {
            t.Pass();
            t.Coin();
            Turnstile t1 = new Turnstile();

            Assert.That(0, Is.EqualTo(t1.Refunds), "refunds");
        }
Ejemplo n.º 15
0
 private void ReorganiseLevel()
 {
     Spawner.EmptySpawner();
     CubeMove.DestroyAll();
     Target.EmptyTarget();
     Turnstile.ResetSense();
     player.SetModeNormal();
     targetCounter = 0;
 }
Ejemplo n.º 16
0
 private void OnMouseDown()
 {
     if (IsInTurniket)
     {
         FlyAway();
         IsInTurniket = false;
         turnstile    = null;
     }
 }
        public void TestCoin()
        {
            Turnstile t = new Turnstile();

            t.Coin();
            Turnstile t1 = new Turnstile();

            Assert.IsFalse(t1.Locked());
            Assert.IsFalse(t1.Alarm());
            Assert.AreEqual(1, t1.Coins);
        }
        public void TestPass()
        {
            Turnstile t = new Turnstile();

            t.Pass();

            Turnstile t1 = new Turnstile();

            Assert.IsTrue(t1.Alarm(), "alarm");
            Assert.IsTrue(t1.Locked(), "locked");
        }
        public void TestTwoOperations()
        {
            Turnstile t = new Turnstile();

            t.Coin();
            t.Pass();
            t.Coin();
            Assert.IsFalse(t.Locked(), "unlocked");
            Assert.AreEqual(2, t.Coins, "coins");
            t.Pass();
            Assert.IsTrue(t.Locked(), "locked");
        }
        public void TestCoinAndPass()
        {
            Turnstile t = new Turnstile();

            t.Coin();
            t.Pass();

            Turnstile t1 = new Turnstile();

            Assert.IsTrue(t1.Locked());
            Assert.IsFalse(t1.Alarm());
            Assert.AreEqual(1, t1.Coins, "coins");
        }
        public void TestTwoCoins()
        {
            Turnstile t = new Turnstile();

            t.Coin();
            t.Coin();

            Turnstile t1 = new Turnstile();

            Assert.IsFalse(t1.Locked(), "unlocked");
            Assert.AreEqual(1, t1.Coins, "coins");
            Assert.AreEqual(1, t1.Refunds, "refunds");
            Assert.IsFalse(t1.Alarm());
        }
Ejemplo n.º 22
0
            /// <summary>
            /// Entry point into console application.
            /// </summary>
            static void Main()
            {
                var turnstile = new Turnstile(new TurnstileController());

                turnstile.Coin();
                turnstile.Coin();
                turnstile.Pass();
                turnstile.Pass();



                // Wait for user
                Console.ReadLine();
            }
        public void TestCancelAlarm()
        {
            Turnstile t = new Turnstile();

            t.Pass();
            t.Coin();

            Turnstile t1 = new Turnstile();

            Assert.IsFalse(t1.Alarm(), "alarm");
            Assert.IsFalse(t1.Locked(), "locked");
            Assert.AreEqual(1, t1.Coins, "coin");
            Assert.AreEqual(0, t1.Refunds, "refund");
        }
Ejemplo n.º 24
0
            /// <summary>
            /// Entry point into console application.
            /// </summary>
            static void Main()
            {
                var turnstile = new Turnstile(new TurnstileController());

                turnstile.HandleEvent(Event.Coin);
                turnstile.HandleEvent(Event.Coin);
                turnstile.HandleEvent(Event.Pass);
                turnstile.HandleEvent(Event.Pass);



                // Wait for user
                Console.ReadLine();
            }
Ejemplo n.º 25
0
        public void RoleAc(Turnstile turnstile, bool giris)
        {
            var role1Ac = new byte[] { 0x63, 0x3, 0x3, 0x7, 0x7, 0x9, 0x9, 0x1, 0x1 };
            var role2Ac = new byte[] { 0x63, 0x3, 0x3, 0x7, 0x7, 0x9, 0x9, 0x2, 0x1 };

            try
            {
                TcpClient tcpclnt = new TcpClient();
                Console.WriteLine("Connecting.....");

                tcpclnt.Connect(turnstile.IPNUMBER, Convert.ToInt16(turnstile.PORTNUMBER));
                // use the ipaddress as in the server program

                label1.Text = "Connected";

                // String str = textBox1.Text;

                Stream stm = tcpclnt.GetStream();

                //var ba = System.Text.Encoding.ASCII.GetBytes(str);
                //var ba = new byte[] { 0x63, 0x3, 0x3, 0x7, 0x7, 0x9, 0x9, 0x1, 0x1 };
                //ASCIIEncoding asen = new ASCIIEncoding();
                //byte[] ba = asen.GetBytes(str);

                var ba = giris ? role1Ac : role2Ac;

                label1.Text = "Transmitting.....";

                stm.Write(ba, 0, ba.Length);

                byte[] bb = new byte[100];
                int    k  = stm.Read(bb, 0, 100);

                string tsReturn = "";
                for (int i = 0; i < k; i++)
                {
                    tsReturn += Convert.ToChar(bb[i]);
                }

                //rtbLog.Text += "tsCevap : " + tsReturn;

                tcpclnt.Close();
            }

            catch (Exception exp)
            {
                label1.Text = "Error..... " + exp.StackTrace;
            }
        }
Ejemplo n.º 26
0
        // Action `done` will be called exactly once in the scheduler. Its argument will be null on timeout.
        public void Send(IMessageOut msg, Action <TimestampedMsg <IMessageIn> > done)
        {
            Condition.Requires(msg, "msg").IsNotNull();
            Condition.Requires(done, "done").IsNotNull();
            string channel = Channels.FromMessage(msg);
            Turnstile <IMessageIn, IMessageOut> turnstile;

            lock (_monitor)
            {
                if (!_channels.TryGetValue(channel, out turnstile))
                {
                    turnstile = new Turnstile <IMessageIn, IMessageOut>(_connection);
                    _channels.Add(channel, turnstile);
                }
            }
            turnstile.Send(msg, done);
        }
Ejemplo n.º 27
0
        private MODEL.Result CheckBarcodeForEntrance(SerialPort sp, Turnstile t)
        {
            MODEL.Result r = new MODEL.Result()
            {
                Success = false,
                Message = ""
            };

            if (sp.BytesToRead > 0)
            {
                var okunan = sp.ReadExisting();
                rtbLog.Text += okunan;

                var okunan2    = okunan.Replace("\r", ",");
                var okunanlist = okunan2.Split(',');

                r            = BAL.CheckBarcode.CheckBarcodeForEntry(okunanlist[0], api);
                rtbLog.Text += DateTime.Now.ToLongTimeString() + " : " + r.Success.ToString() + ">" + r.Message + Environment.NewLine;
                if (r.Success)
                {
                    GirisRoleAc(t);
                }
                else
                {
                    rtbLog.Text      += r.Message;
                    lblLastError.Text = DateTime.Now.ToShortTimeString() + ":" + r.Message;
                }
                //giriş turnike aç
                //if (okunan.Contains("1234567890123"))
                //    GirisRoleAc(t);
                //else
                //    CikisRoleAc(t);

                return(r);
            }
            else
            {
                return(r);
            }
        }
Ejemplo n.º 28
0
        static void Main(string[] args)
        {
            ArrayPrograms.PrintTwoElements(new int[] { });

            string removeParenthesis = new Program().RemoveOuterParentheses1("(()())(())(()(()))");//(()())(())
            var    v = new FreqStack();

            v.push(5);
            v.push(7);
            v.push(5);
            v.push(7);
            v.push(4);
            v.push(5);

            v.pop();
            v.pop();
            v.pop();

            new MicrosoftInterviewQuestions().LetterCombinations("23");
            // SubArraySumEquals(new int[] { 1, 1, 1 }, 2);
            var intervals = new int[4][];

            intervals[0] = new int[] { 1, 3 };
            intervals[1] = new int[] { 2, 6 };
            intervals[2] = new int[] { 8, 10 };
            intervals[3] = new int[] { 15, 18 };

            Merge(intervals);

            //1 10000000000
            //654321 9876543210
            //32154 919958846846
            //1098000 500000491
            //8128434 98754848569

            BigInteger counter = 0;
            BigInteger start   = 1;
            BigInteger end     = 10000000000;

            while (start < end)
            {
                if (PalindromicPrime.IsPalindrome(start) && PalindromicPrime.IsPrime(start))
                {
                    Console.Write(counter + "\t");
                    //if (counter % 10 == 0) Console.WriteLine();
                    counter++;
                }
                start++;
            }

            Console.WriteLine($"Result : { counter}");

            Console.Read();

            string arrayInputs = @"62426,4;87605,5;38277,8;70308,1;32531,5;48853,2;13635,8;70476,1;15883,2;89319,8;98629,2;6018,1;
45071,5;29809,2;5494,7;1748,4;45432,1;41458,7;18554,4;63523,2;73870,7;18845,5;79817,5;48481,2;11345,5;78002,4;74829,8;6040,7;
87374,4;32347,2;94668,1;79872,1;3914,4;72553,2;11314,7;78689,5;52349,5;69189,8;22097,5;24909,8;52400,4;441,8;32510,4;46944,1;
44992,7;63196,7;39451,2;99889,2;79527,8;16029,8;40950,1;1838,4;85040,4;77302,7;62444,4;27167,5;91557,8;57847,2;37732,7;1965,8;
90405,8;97354,7;21266,4;99331,2;35366,4;55991,5;73323,8;82911,8;30842,4;3051,8;82712,4;44278,7;31105,2;6085,2;35346,1;48452,4;
15632,4;20301,8;9880,7;75090,1;51244,7;782,4;11706,1;84209,5;17750,4;52084,7;84724,7;24033,8;21863,5;31121,5;14782,7;87800,4;
39499,2;10649,5;573,8;19088,4;41259,8;47022,1;46583,5;23070,1";

            string[] inputs = arrayInputs.Split(';');
            int      counti = 1;

            foreach (string inp in inputs)
            {
                string[] inps  = inp.Split(',');
                var      watch = new System.Diagnostics.Stopwatch();
                watch.Start();
                var power = PalindromicPrime.Pow(2, Convert.ToInt32(inps[0]));
                //var power = BigInteger.Pow(2, Convert.ToInt32(inps[0]));
                var digits = (int)PalindromicPrime.SumOfDigits(power);
                watch.Stop();
                if (digits == Convert.ToInt16(inps[1]))
                {
                    Console.WriteLine($"{counti} : Execution Time: {watch.ElapsedMilliseconds} ms");
                }
                else
                {
                    Console.WriteLine($"Unmatched: input: {inps[0]} and Result: {inps[1]}, Code o/p: {digits}");
                }
                counti++;
            }

            //int pow =(int)Math.Pow(2, 4);
            //int pow1 = 1 << 4; // 2 ^ 4 both is same (this is left shift operator )

            PalindromicPrime.IsPrime(11);
            // new ArrayPrograms().UniquePaths(5, 4);

            new ArrayPrograms().MinCostClimbingStairs(new int[] { 10, 15, 20 });
            AmazonMusicPairs.NumPairsDivisibleBy60(new int[] { });

            stringprograms.reverseInParentheses("(ed(et(oc))el)");

            MicrosoftInterviewQuestions.ValidParantheses("(()");
            new Program().LargestUniqueNumber(new int[] { 5, 7, 3, 9, 4, 9, 8, 3, 1 });
            new Program().MergeSortedArray(new int[] { 12, 11, 13, 5, 6, 7 });

            stringprograms.GetMaxSubstring("pwwkew");


            var stack = new StackImplementation();

            stack.Push(1);
            stack.Push(2);
            stack.Push(3);
            int popv  = stack.Pop();
            int value = stack.Count;

            popv  = stack.Pop();
            value = stack.Count;
            popv  = stack.Pop();
            value = stack.Count;


            var qi = new QueueImplementation();

            qi.EnQueue(1);
            qi.EnQueue(2);
            qi.EnQueue(3);

            int peek    = qi.Peek();
            int count   = qi.Count;
            int dequeue = qi.DeQueue();

            count = qi.Count;

            new stringprograms().Subsets(new int[] { 1, 2, 2 });
            //string reverse = stringprograms.reverseInParentheses("(u(love)i)");

            MicrosoftInterviewQuestions.BestBuyAndSellStock(new int[] { 7, 1, 5, 3, 6, 4 });

            ArrayPrograms.FindElementAppearsOnce();
            new ArrayPrograms().FindRepeatingCharacter(11, 2);

            var listlist = new List <IList <int> >();

            listlist.Add(new List <int>()
            {
                1, 2, 2, 1
            });
            listlist.Add(new List <int>()
            {
                3, 1, 2
            });
            listlist.Add(new List <int>()
            {
                1, 3, 2
            });
            listlist.Add(new List <int>()
            {
                2, 4
            });
            listlist.Add(new List <int>()
            {
                3, 1, 2
            });
            listlist.Add(new List <int>()
            {
                1, 3, 1, 1
            });

            int countb = ArrayPrograms.LeastBricks(listlist);

            ArrayPrograms.Calculate("3+2*2");

            //var pict = new char[4][];
            //pict[0] = new char[] { 'b','b','b','a' };
            //pict[1] = new char[] { 'a','b','b','a' };
            //pict[2] = new char[] { 'a', 'c','a','a' };
            //pict[3] = new char[] { 'a', 'a', 'a', 'c' };

            //HRQuestions.strokesRequired(pict);

            //int tikets = HRQuestions.countMoves(new int[] { 3, 4, 6, 6, 3 });
            //int number = HRQuestions.GetNumber(new int[] { 0, 0, 1, 1, 0, 1, 0 });
            //int[] resi= HRQuestions.maxMin(new int[] { 1,2,3,1}, new string[] {"push","push","push","pop"});
            //HRQuestions.minDifference(new int[] { 1, 3, 3, 2, 4 });
            var hlist = new List <int>();

            hlist.Add(6);
            hlist.Add(1);
            hlist.Add(2);
            hlist.Add(3);
            hlist.Add(4);
            hlist.Sort();

            HRQuestions.balancedSum(hlist);

            int[][] grid = new int[4][];
            grid[0] = new int[] { 1, 1, 1 };
            grid[1] = new int[] { 0, 1, 0 };
            grid[2] = new int[] { 0, 0, 0 };
            grid[3] = new int[] { 1, 1, 0 };

            GridClimbing.NumberOfConnections(grid);


            string result = new AmazonInterviewQuestions().IntToRoman(49);

            PlusMultArray.PlusMult(new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 });
            OfficeDesign.GetMaxColors(new int[] { 2, 3, 5, 1, 1, 2, 1 }, 7);

            Almost_Equivalent_String.AreAlmostEquivalent(new string[] { "aabaab", "aaaaabb" }, new string[] { "bbabbc", "abb" });

            SortAnArray.GetMinimumMoves(new int[] { 5, 1, 3, 2 });

            var boxes = new List <int>();

            boxes.Add(7000);
            boxes.Add(7000);
            boxes.Add(12000);
            boxes.Add(13000);
            boxes.Add(6900);

            var units = new List <int>();

            units.Add(6910);
            units.Add(7010);
            units.Add(7000);
            units.Add(12000);
            units.Add(18000);
            units.Add(15000);
            units.Add(10450);

            GeologicalSorting.SortIntersect(boxes.ToArray(), units.ToArray());
            //FillTheTruck.getMaxUnit(3, boxes, 3, units, 6);

            string jsonmsg    = "{'error':{'code':'Forbidden','message':'Hi 'how' are you, im good'}}";
            int    startIndex = jsonmsg.IndexOf("message") + 9;
            string msg        = jsonmsg.Substring(startIndex, jsonmsg.Length - (startIndex + 2));

            PatternRecognition.GetCount(";bcdefbcbebc|abcdebcfgsdf|cbdbesfbcy|1bcdef23423bc32");

            Turnstile.getTimes1(4, new int[] { 0, 0, 1, 5 }, new int[] { 0, 1, 1, 0 });

            //Turnstile.getTimes(5, new int[] { 1, 2,2,4,4 }, new int[] { 0,1,0,0,1 });

            var newEdges = new int[3][];

            newEdges[0] = new int[] { 1, 2, 12 };
            newEdges[1] = new int[] { 3, 4, 30 };
            newEdges[2] = new int[] { 1, 5, 8 };


            var edges = new int[5][];

            edges[0] = new int[] { 1, 2 };
            edges[1] = new int[] { 2, 3 };
            edges[2] = new int[] { 3, 4 };
            edges[3] = new int[] { 4, 5 };
            edges[4] = new int[] { 1, 5 };


            // int v = new MinCostToRepairEdges().MinCostToRepair(5, edges, newEdges);

            MicrosoftInterviewQuestions.LongestPalindrome("babad");

            var usersongs = new Dictionary <string, List <string> >();

            usersongs.Add("David", new List <string>()
            {
                "song1", "song2", "song3", "song4", "song8"
            });
            usersongs.Add("Emma", new List <string>()
            {
                "song5", "song6", "song7"
            });

            var songgenres = new Dictionary <string, List <string> >();

            songgenres.Add("Rock", new List <string>()
            {
                "song1", "song3"
            });
            songgenres.Add("Dubstep", new List <string>()
            {
                "song7"
            });
            songgenres.Add("Techno", new List <string>()
            {
                "song2", "song4"
            });
            songgenres.Add("Pop", new List <string>()
            {
                "song5", "song6"
            });
            songgenres.Add("Jazz", new List <string>()
            {
                "song8", "song9"
            });

            FavoriteGenres.FavoriteGenre(usersongs, songgenres);

            PartitionLabels.StringPartion("ababcbacadefegdehijhklij");


            var list = new List <IList <int> >();

            list.Add(new List <int>()
            {
                0, 1
            });
            list.Add(new List <int>()
            {
                0, 2
            });
            list.Add(new List <int>()
            {
                1, 3
            });
            list.Add(new List <int>()
            {
                2, 3
            });
            list.Add(new List <int>()
            {
                3, 4
            });
            list.Add(new List <int>()
            {
                2, 5
            });
            list.Add(new List <int>()
            {
                5, 6
            });

            var products = new int[3][];

            products[0] = new int[2] {
                4, 4
            };
            products[1] = new int[] { 1, 2 };
            products[2] = new int[] { 3, 6 };

            //new Program().FiveStarReviews(products, 77);

            KeywordSuggestions.SuggestedProducts2(new string[] { "mobile", "mouse", "moneypot", "monitor", "mousepad" }, "mouse");

            var res = SlowestKeyPress.LongestKeyPress(new int[] { 9, 29, 49, 50 }, "cbcd");

            MultiProcessorSystems.ProcessorSystem(5, new int[] { 3, 1, 7, 2, 4 }, 15);
            MicrosoftInterviewQuestions.TwoSum(new int[] { 2, 7, 11, 15 }, 9);


            Turnstile.getTimes(4, new int[] { 1, 1, 2, 6 }, new int[] { 0, 1, 1, 0 });


            string gs = "aaaaaa";
            string t  = "a";

            int v1 = solve(gs, t);

            string rs        = gs.Replace(t, "");
            string substring = string.Empty;

            if (string.IsNullOrEmpty(rs) || rs.Length == t.Length)
            {
                int[] abc = new int[26];
                int   j   = 0;
                int   ans = 0;

                for (int i = 0; i < t.Length; i++)
                {
                    j = Math.Max(j, abc[t[i] - 'a']);

                    if (i - j + 1 > ans)
                    {
                        ans       = i - j + 1;
                        substring = t.Substring(j, ans);
                    }
                    abc[t[i] - 'a'] = i + 1;
                }
            }



            //Validate given string and given substring



            Console.Read();


            //var v = new int[3][];
            //v[0] = new int[] { 1, 1, 0 };
            //v[1] = new int[] { 1, 1, 0 };
            //v[2] = new int[] { 0, 0, 1 };
            //Amazon.OnlineAssessment.GiftingGroups.FindCircleNum(v);
            Amazon.OnlineAssessment.RoboticsChallenge.CalPoints(new string[] { "5", "2", "C", "D", "+" });
            Amazon.OnlineAssessment.RoverControl.Rover_Control(new string[] { "R", "D", "L", "L", "D" }, 4);

            Amazon.OnlineAssessment.SubstringsOfSizeKwithK_1DistinctChars.GetMaxSubstring("awaglknagawunagwkwagl", 4);

            Amazon.OnlineAssessment.AmazonMusicPairs.NumPairsDivisibleBy60(new int[] { 30, 20, 150, 100, 40 });

            decryptPassword("51Pa*0Lp*0e");

            string[] ovalue = "1 4".Split(' ');

            Node head1 = new Node(1);

            head1.Next      = new Node(2);
            head1.Next.Next = new Node(3);

            Node head2 = new Node(2);

            head2.Next      = new Node(3);
            head2.Next.Next = new Node(4);

            AmazonInterviewQuestions amazonInterviewQuestions = new AmazonInterviewQuestions();
            var mg = amazonInterviewQuestions.MergeTwoLists(head1, head2);


            int[][] costs = new int[3][];
            costs[0] = new int[] { 17, 2, 17 };
            costs[1] = new int[] { 16, 16, 5 };
            costs[2] = new int[] { 14, 3, 19 };

            new DesignQuestions().MinCost(costs);

            ArrayPrograms.Calculate("3+2*2");
            new stringprograms().RestoreIpAddresses("25525511135");
            new ArrayPrograms().FindLeastNumOfUniqueInts(new int[] { 4, 3, 1, 1, 3, 3, 2 }, 3);
            MicrosoftInterviewQuestions.FindIsLand();

            var mi = new MicrosoftInterviewQuestions();

            int[][] rc = new int[3][];
            rc[0] = new int[] { 0, 0, 1, 0, 0 };
            rc[1] = new int[] { 0, 1, 0, 1, 0 };
            rc[2] = new int[] { 0, 1, 1, 1, 0 };

            int re = mi.ClosedIsland(rc);


            string decode = stringprograms.decodeString("3[a]2[bc]");

            //string reverse = stringprograms.reverseInParentheses("(u(love)i)");
            //var listlist = new List<IList<int>>();
            //listlist.Add(new List<int>() { 1, 2, 2, 1 });
            //listlist.Add(new List<int>() { 3, 1, 2 });
            //listlist.Add(new List<int>() { 1, 3, 2 });
            //listlist.Add(new List<int>() { 2, 4 });
            //listlist.Add(new List<int>() { 3, 1, 2 });
            //listlist.Add(new List<int>() { 1, 3, 1, 1 });

            //int count = ArrayPrograms.LeastBricks(listlist);
            //int length = stringprograms.StringCompression(new string[] { "a", "b", "b", "b", "b", "b", "b", "b", "b", "b", "b", "b", "b" });
            // var res = stringprograms.LengthEncoding("a");
            new stringprograms().DailyTemperatures(new int[] { 73, 74, 75, 71, 69, 72, 76, 73 });

            char[][] mins = new char[4][];
            mins[0] = new char[5] {
                'E', 'E', 'E', 'E', 'E'
            };
            mins[1] = new char[5] {
                'E', 'E', 'M', 'E', 'E'
            };
            mins[2] = new char[5] {
                'E', 'E', 'E', 'E', 'E'
            };
            mins[3] = new char[5] {
                'E', 'E', 'E', 'E', 'E'
            };

            new DesignQuestions().updateBoard(mins, new int[] { 0, 0 });

            // new stringprograms().MinimumWindowSubstring("abdzfgabz", "az");
            //OnLineAssessment.MinCostOfDuplicationLetter("aaaa", new int[] { 3,4,5,6 });
            //string str = "str1\nstr2\nstr3\nstr4\nstr5\nstr6\nstr7\nstr8\nstr9\nstr10\nstr11\nstr12\nstr13\nstr14\nstr15\nstr16\nstr17\nstr18\nstr19\nstr20\nstr21\nstr22\nstr23\nstr24\nstr25";
            //str = "str1\nstr2\nstr3\nstr4\nstr5\nstr6\nstr7";
            //new ArrayPrograms().PrintLast10LineOfGivenFile(str,'\n');
            //new ArrayPrograms().FindRepeatingCharacter(8, 3);
            //new ArrayPrograms().UniquePaths(3, 2);
            //List<IList<int>> input = new List<IList<int>>();
            //input.Add(new List<int> { 0, 1 });
            //input.Add(new List<int> { 1, 2 });
            //input.Add(new List<int> { 2, 0 });
            //input.Add(new List<int> { 1, 3 });
            //new ArrayPrograms().CriticalConnections(4, input);
            //[1,2],[3,5],[6,7],[8,10],[12,16]

            //int[][] interval = new int[2][];
            //interval[0] = new int[2] { 1,3};
            //interval[1] = new int[2] { 6,9};

            //int[] insert = new int[] { 2,5 };

            //int[][] interval = new int[5][];
            //interval[0] = new int[2] { 1, 2 };
            //interval[1] = new int[2] { 3, 5 };
            //interval[2] = new int[2] { 6, 7 };
            //interval[3] = new int[2] { 8, 10 };
            //interval[4] = new int[2] { 12, 16 };

            //int[] insert = new int[] { 4,8 };


            //var result = new ArrayPrograms().Insert(interval, insert);
            //var result = new ArrayPrograms().ClimbStairs(10);
            //var result = new ArrayPrograms().MinCostClimbingStairs(new int[] { 1, 100, 1, 1, 1, 100, 1, 1, 100, 1 });
            //new ArrayPrograms().NumDecodings("12");
            //new ArrayPrograms().LongestConsecutive(new int[] { 100, 4, 200, 1, 3, 2 });
            //new AmazonInterviewQuestions().MaxProductArray(new int[] { -2, 0, -1 });
            //new ArrayPrograms().HammingWeight(11); //100 //001
            //var leng = AmazonInterviewQuestions.GetUniqueSubstring("abcabcbb");
            //var v = new MedianFinder();
            //v.AddNum(1);
            //v.AddNum(2);
            //v.AddNum(4);
            //v.AddNum(3);
            //v.AddNum(6);
            //v.AddNum(5);
            //var result = v.FindMedian();
            //new stringprograms().Subsets(new int[] { 1,2,2 });
            //new stringprograms().permute(new int[] { 1,2,3,4 });
            //new stringprograms().combinationSum(new int[] { 2, 3, 6, 7 }, 7);
            //new stringprograms().partition("aab");
            //new stringprograms().MaxSlidingWindow(new int[] { 1, 3, -1, -3, 5, 3, 6, 7 }, 3);
            //new stringprograms().SearchRange(new int[] { 5, 7, 7, 8, 8, 9 }, 8);
            //stringprograms.IsSubsequence("axc", "ahbgdc");
            //stringprograms.RepeatedSubstringPattern("ababab");
            //MinStack minStack = new MinStack();
            //minStack.Push(-2);
            //minStack.Push(0);
            //minStack.Push(-3);
            //minStack.getMin(); //--> Returns - 3.
            //minStack.Pop();
            //minStack.Top(); //--> Returns 0.
            //minStack.getMin(); //--> Returns - 2.

            //FreqStack fk = new FreqStack();
            //fk.push(5); //5,7,5,7,4,5
            //fk.push(7);
            //fk.push(5);
            //fk.push(7);
            //fk.push(4);
            //fk.push(5);
            //int val = fk.pop(); //5
            //val = fk.pop(); //7
            //val = fk.pop(); //5
            //val = fk.pop(); //4
            //AmazonInterviewQuestions aiq = new AmazonInterviewQuestions();

            //var llist = new LinkedList();
            //llist.AddNode(1);
            //llist.AddNode(2);
            //llist.AddNode(3);
            //llist.AddNode(4);
            //llist.AddNode(5);

            // new LinkedListPrograms().ReorderList(llist.Head);
            //var node = BinaryTree.ConstructBinaryTree(new int[] { 3, 2, 4, 1, 5, 6 }, new int[] { 3, 4, 2, 6, 5, 1 });
            //BinaryTree.Flatten(node);

            //var node = BinaryTree.ConstructBinaryTree(new int[] { 2, 5, 20, 10, 8 }, new int[] { 2, 20, 5, 8, 10 });
            ////var reslut = new LinkedListPrograms().TreeToDoublyList(node);
            //var b = new BinaryTree();
            //b.PrintInOrder(node);
            //b.CorrectBST(node);
            //b.PrintInOrder(node);

            // aiq.reverseKGroup(llist.Head, 2);


            //int[,] interval = new int[3,2];
            //interval[0, 0] = 0;
            //interval[0, 1] = 30;

            //interval[1, 0] = 5;
            //interval[1, 1] = 10;

            //interval[2, 0] = 15;
            //interval[2, 1] = 20;

            //int rooms = aiq.MinMeetingRooms(interval);

            //aiq.MaxArea(new int[] { 0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1 });

            //aiq.ThreeSum(new int[] { -1, 0, 3, -2, -1, -4 }, 1);

            //aiq.SubStringPattern("aaaa", "bba");
            //var result=aiq.ProductExceptSelf(new int[] { 1, 2, 3, 4 });
            //var result = aiq.FirstUniqueChar("loveleetcode");
            //aiq.CanFinish(2, new int[,] { { 1, 0 },{ 0,1} });
            //aiq.CutOffTree(new int[,] { {1,2,3},{ 0,0,4},{7,6,5} }); //new int[,] { {1,2,3},{ 0,0,4},{7,6,5} }
            //var result = aiq.FloodFill(new int[,] { { 1,1,1 }, { 1,1,0 }, { 1,0,1 } },1,1,2);
            //aiq.MergeInterval(new int[,] { { 1, 3 }, { 2, 6 }, { 8, 10 }, { 15, 18 } }); //{ 1,3 },{ 2,6},{ 8,10 },{15,18 }  { 1,4},{ 4,5}
            //aiq.MaxSubArray(new int[] { -2, 1, -3, 4, -1, 2, 1, -5, 4 });
            //var result=aiq.WordBreak("leetcode", new List<string>() { "leet", "code"});
            //var result = aiq.CoinChange(new int[] { 1, 2, 5 }, 11);
            //Console.Read();
            //int days=Assessment.MinDays();
            //Assessment.TestMaximumToys();
            //stringprograms.GetUniqueSubstring();
            // Trie trie = new Trie();

            // trie.Insert("apple");
            //bool res= trie.Search("apple");   // returns true
            //bool res1= trie.Search("app");     // returns false
            //bool res2= trie.StartsWith("app"); // returns true
            // trie.Insert("app");
            //bool res3= trie.Search("app");     // returns true

            //ArrayPrograms.BestBuyAndSellStock(new int[] { 7, 1, 5, 3, 6, 4 });
            //ArrayPrograms.SearchMatrix(new int[,] { { 1, 3, 5, 7 },{ 10, 11, 16, 20 },{ 23, 30, 34, 50 } },13);
            //ArrayPrograms.SortColors(new int[] { 2, 0, 2, 1, 1, 0});
            // ArrayPrograms.RemoveDuplicates(new int[] { 0, 0, 1, 1, 1, 2, 2, 3, 3, 4 });
            //stringprograms.RemoveDuplicates("wwwwaaadexxxxxxywww");
            // new stringprograms().LetterCombinations("23");
            //ArrayPrograms.RotateImage(new int[,] { {1,2 }, {3,4} });
            //stringprograms.GroupAnagrams(new string[] { "eat", "tea", "tan", "ate", "nat", "bat" });
            //stringprograms.IsWordPalindrome("race a car");
            //stringprograms.StringToIntConversion("4193 with words");
            //stringprograms.GetUniqueSubstring();
            //ArrayPrograms.FindMedianOfTwoArrays(new int[] {1,2,3,4,5 }, new int[] { 6,7,8,9,10,11 });
            //DesignQuestions.LRUCache.Test();
            //CarDesign.BuildCar();

            //var prog = new Program();
            //var no = prog.RomanToInt("IV");

            // numberNeeded("cde", "abc");
            // repeatedString1("aba", 10);
            //Assessment.MinCostConnectedRops();
            //int steps= Assessment.TreaureIsLand2();

            // LinkedList lv = new LinkedList(1);
            //lv.AddNode(2);
            //lv.AddNode(3);
            //lv.AddNode(4);

            //LinkedListPrograms.SwapPairs(lv.Head);

            // Program.gameWinner("ww");
            //DesignQuestions.MyHashMap cv = new DesignQuestions.MyHashMap();
            //cv.put(5, 10);
            //cv.get(5);
            //cv.put(6,11);
            //cv.put(7, 12);
            //cv.get(6);
            //cv.get(8);
            //cv.put(2074, 20);
            //cv.put(2073, 25);


            //DesignQuestions.LRUCache.Test();
            //stringprograms.IsIsomorphic("egg","add");
            //Microsoft.Microsoft1.KthSmallest();
            //stringprograms.ValidParantheses();
            //var result=ArrayPrograms.SortedArrayToBinarySearchTree(new int[] { -10, -3, 0, 5, 9, 10 });
            //ArrayPrograms.AsteroidCollision();
            //ArrayPrograms.MinCostPath();
            //stringprograms.search();//"HiHoHowareyou", "How" --> "AABAACAADAABAAABAA", "AABA"

            //Console.Read();



            //int[] B = new int[] { 1, 1, 1, 3, 3, 3, 20, 4, 4, 4 };
            //int ones = 0;
            //int twos = 0;
            //int not_threes;
            //int x;

            //for (int i = 0; i < 10; i++)
            //{
            //    x = B[i];
            //    twos |= ones & x;
            //    ones ^= x;
            //    not_threes = ~(ones & twos);
            //    ones &= not_threes;
            //    twos &= not_threes;
            //}

            //int result= stringprograms.Factorial(5);

            // ArrayPrograms.FindUniqueNo(new int[] { 12, 5, 12, 4, 12, 1, 1, 2, 3, 3,2,5 });
            // stringprograms.RemoveDuplicates("wwwwaaadexxxxxxywww");
            //stringprograms.reverseWords("the sky is blue".ToCharArray());
            //stringprograms.CalculateValues();
            //bool result=stringprograms.IsIsomorphic("far", "boo");

            //string[] logs = new string[] { "dig1 8 1 5 1", "let1 art can", "dig2 3 6", "let2 own kit dig", "let3 art zero" };
            //var result = stringprograms.ReOrderTheLogFiles(logs);

            //beginWord = hit; endWord=cog; dict = ["hot","dot","dog","lot","log"]
            //int steps = stringprograms.NoOfStepsForWordLadder("hit", "cog", new List<string>() { "hot", "dot", "dog", "lot","log" });

            //given [3,2,1,5,6,4] and k = 2, return 5
            //int result = stringprograms.FindKthLargestElement(new int[] { 3, 2, 1, 5, 6, 4 }, 2);
            //stringprograms.FindDuplicatesUseIndex("abcdefabc");
            //stringprograms.SubStringPattern("HiHowHowareyou", "iam");
            //stringprograms.LengthEncoding("wwwwaaadexxxxxxywww");
            //ArrayPrograms.PrintTwoElements(new int[] { 7, 3, 4, 5, 5, 6, 2 });
            //DesignQuestions.ExecuteTicTacToe();
            //LinkedListPrograms.OddEvenLinkedList();

            ////var definitionFile = @"C:\Users\v-sesiga\Desktop\New folder\PackageConfig.xml";
            ////var runnerElement = XDocument.Load(definitionFile).Descendants("Runner").Where(q=> q.Attribute("enable").Value == "true").ToList(); // count of the Runners
            ////Console.WriteLine($"Runner List Count {runnerElement.Count}");
            ////for(int i=0; i<runnerElement.Count; i++)
            ////{
            ////    //Console.WriteLine($"{i+1}-->{runnerElement[i].Attribute("name").Value}");

            ////    Console.WriteLine($"{runnerElement[i].Attribute("name").Value}");
            ////}
            ////Console.Read();

            ////var output = ArrayPrograms.SortArrayByParity(new int[] { 3, 1, 2, 4 });
            //var res = ArrayPrograms.SortedSquar(new int[] { 4, -1, 0, 3, 10  });

            ////for Vijay
            ////new JsonConversion().JsonTestCases();


            ////GCD
            //Console.WriteLine(CalcGCD(25, 20));

            ////LCM
            //Console.WriteLine(CalcLCM(25, 20));

            ////Reverse
            //Console.WriteLine(ReverseNo(121));

            ////Armstrong
            //Console.WriteLine(ArmstrongNo(171)); //371

            ////Fibonacci
            //PrintFibonacci(10);

            ////Factorial
            //Console.WriteLine(Factorial(5));

            ////Binary Search
            //int[] inputs = new int[] { 5, 7, 9, 10, 11, 13 };
            //var element = ArrayPrograms.BinarySearch(inputs, 9, 0, 4);
            //Console.WriteLine(element);

            ////Find the duplicates from the given string
            //FindTheDuplicates("Hi How Are You I am fine How about you");

            ////Palindrome
            //Palindrome("abcaba");

            ////Anagram
            //Anagram("pot", "topa");

            ////Sorting
            //ArrayPrograms.Sorting(new int[] { 12, 5, 2, 4, 8, 1, 10, 9 });

            ////Array Rotation
            //ArrayPrograms.ArrayRotation(new int[] { 1, 2, 3, 4, 5 }, 2);

            ////Array Rotation Search
            //ArrayPrograms.RotationSearch(new int[] { 4, 5, 1, 2, 3 }, 3, 0, 5);

            // ArrayPrograms.SortedSquar(new int[] { -4, -1, 0, 3, 10 });

            ////Binary Tree //new int[] { 9, 3, 15, 20, 7 }, new int[] { 9, 15, 7, 20, 3 }
            /////new int[] { 3,5,8,10,12,14,16 }, new int[] { 3,8,5,12,16,14,10} -- In, Post
            /////new int[] { 3,5,8,10,12,14,16 }, new int[] { 10,5,3,8,14,12,16}
            //var node = BinaryTree.ConstructBinaryTree(new int[] { 3,5,8,10,12,14,16 }, new int[] { 10, 5, 3, 8, 14, 12, 16 },true);
            //BinaryTree.SeriaizeDeserializeBinaryTree(node);
            ////Print Binary tree
            //// BinaryTree.BFSTPrintByLevel(node);
            //BinaryTree.BFSTPrintByZigZagLevel(node);

            //ArrayPrograms.SetZeros(); 1,3,7,8,9, 11 ,15,18,19,21,25,, input: x:  { 1, 3, 8, 9, 15 } input: y:  { 7, 11, 19, 21, 18, 25 }

            //int res = ArrayPrograms.FindMedianOfTwoArrays(x, y);

            //int[] result = ArrayPrograms.MergeTwoSortedArrays(new int[] { 7, 11, 19, 21, 25 }, new int[] { 1,15 });

            //LinkedListPrograms.SumOfTwoLinkedList();

            //var llist = new LinkedList();
            //llist.AddNode(1);
            //llist.AddNode(2);
            //llist.AddNode(3);
            //llist.AddNode(2);
            //llist.AddNode(1);

            //LinkedListPrograms.RecursivePalindrome(llist.Head, llist.Head, new LinkedListPrograms.Result());
            //Console.ReadKey();
        }
        // default event functions

        public virtual void Coin(Turnstile name)
        {
            throw new FSMError("Coin", name.GetCurrentState());
        }
Ejemplo n.º 30
0
 public void SetUp()
 {
     t = new Turnstile();
     t.Reset();
 }