Posts

Showing 10 of 42 Posts |Page2

3200. Maximum Height of a Triangle | LeetCode Solution | JavaScript | Easy

LeetCodeArraysEasy
> LeetCode Problem - Link [https://leetcode.com/problems/maximum-height-of-a-triangle/description/] PROBLEM You are given two integers red and blue representing the count of red and blue colored balls. You have to arrange these balls to form a triangle such that the 1st row will have 1 ball, the...

58. Length of Last Word | LeetCode Solution | JavaScript | Easy

LeetCodeArraysEasy
> LeetCode Problem - Link [https://leetcode.com/problems/length-of-last-word/description/] PROBLEM Given a string s consisting of words and spaces, return the length of the last word in the string. A word is a maximal  substring c...

66. Plus One | LeetCode Solution | JavaScript | Easy

LeetCodeArraysEasy
> LeetCode Problem - Link [https://leetcode.com/problems/find-all-numbers-disappeared-in-an-array/description/] PROBLEM You are given a large integer represented as an integer array digits, where each digits[i] is the ith digit of the integer. The digits are ordered from most sign...

414. Third Maximum Number | LeetCode Solution | JavaScript | Easy

LeetCodeArraysEasy
> LeetCode Problem - Link [https://leetcode.com/problems/third-maximum-number/description/] PROBLEM Given an integer array nums, return the third distinct maximum number in this array. If the third maximum does not exist, return the maximum number.   <...

1051. Height Checker | LeetCode Solution | JavaScript | Easy

LeetCodeArraysEasy
> LeetCode Problem - Link [https://leetcode.com/problems/sort-array-by-parity/description/] PROBLEM A school is trying to take an annual photo of all the students. The students are asked to stand in a single file line in non-decreasing order by height. Let this ordering be represente...

905. Sort Array By Parity | LeetCode Solution | JavaScript | Easy

LeetCodeArraysEasy
> LeetCode Problem - Link [https://leetcode.com/problems/sort-array-by-parity/description/] PROBLEM Given an integer array nums, move all the even integers at the beginning of the array followed by all the odd integers. Return any array that satisfies this condition...

283. Move Zeroes | LeetCode Solution | JavaScript | Easy

LeetCodeArraysEasy
> LeetCode Problem - Link [https://leetcode.com/problems/move-zeroes/] PROBLEM Given an integer array nums, move all 0's to the end of it while maintaining the relative order of the non-zero elements. Note that you must do this in-place without making a copy of the array.  ...

2. Kamikaze Kittens Devlog #2 | Better Gameplay Data Configs

Game DevelopmentGodotDev LogKamikaze Kittens
21 JULY 2024 Currently, all the characteristics of game behavior are hard-coded inside 1. Inside Cat classes, the Cat class is the base of the player controller class - Every player is a Cat class-derived character, which different cat characters can instantiate from 2. Inside Bullet/Projectile classes. (maybe I'll call it Projectile</...