Leetcode 2293. Min Max Game

Posted on Wed 08 June 2022 in Leetcode • Tagged with recursion, simulation

Question Link : https://leetcode.com/problems/min-max-game/

Difficulty: Easy

Question

You are given a 0-indexed integer array nums whose length is a power of 2. Apply the following algorithm on nums:

Let n be the length of nums. If n == 1, end the process. Otherwise, create a new 0-indexed integer …


Continue reading

Leetcode 0289. Game of Life

Posted on Mon 11 April 2022 in Leetcode • Tagged with simulation, state-changes

Question Link : https://leetcode.com/problems/game-of-life/

Difficulty: Medium

Question

According to Wikipedia's article: "The Game of Life, also known simply as Life, is a cellular automaton devised by the British mathematician John Horton Conway in 1970." The board is made up of an m x n grid of cells …


Continue reading

Leetcode 0682. Baseball Game

Posted on Sat 09 April 2022 in Leetcode • Tagged with simulation

Question Link : https://leetcode.com/problems/baseball-game/

Difficulty: Easy

Question

You are keeping score for a baseball game with strange rules. The game consists of several rounds, where the scores of past rounds may affect future rounds' scores. At the beginning of the game, you start with an empty record …


Continue reading

Leetcode 0946. Validate Stack Sequences

Posted on Tue 15 March 2022 in Leetcode • Tagged with stack, simulation, greedy

Question Link : https://leetcode.com/problems/validate-stack-sequences/

Difficulty: Medium

Question

Given two integer arrays pushed and popped each with distinct values, return true if this could have been the result of a sequence of push and pop operations on an initially empty stack, or false otherwise.   Example 1:

Input: pushed …


Continue reading

Leetcode 0799. Champagne Tower

Posted on Thu 03 March 2022 in Leetcode • Tagged with simulation

Question Link : https://leetcode.com/problems/champagne-tower/

Difficulty: Medium

Question

We stack glasses in a pyramid, where the first row has 1 glass, the second row has 2 glasses, and so on until the 100th row.  Each glass holds one cup of champagne. Then, some champagne is poured into the …


Continue reading