Posts

Showing 10 of 42 Posts |Page3

1. Kamikaze Kittens Devlog #1 | Better Muzzle Flashes

Game DevelopmentGodotGame FeelDev LogKamikaze Kittens
20 JULY 2024 Naduko and I have been discussing how to improve the game feel when shooting, so we're working on some better muzzle flashes, we weren't very happy with how it felt previously. It didn't have the "thump" effect we were looking for. Felt very incomplete so we're currently iterating on how to make shooting feel more powerful and fluid. It's much better - we're definitely getting somewhere. Excit...

941. Valid Mountain Array | LeetCode Solution | JavaScript | Easy

LeetCodeArraysEasy
> LeetCode Problem - Link [https://leetcode.com/problems/valid-mountain-array/description/] PROBLEM Given an array of integers arr, return true if and only if it is a valid mountain array. Recall that arr is a mountain array if and only if Ex:...

27. Remove Element | LeetCode Solution | JavaScript | Easy

LeetCodeArraysEasy
> LeetCode Problem - Link [https://leetcode.com/problems/remove-element/description/] PROBLEM Given an integer array nums and an integer val, remove all occurrences of val in nums https://en.wikipedia.org/wiki/In-place_algorithm...

88. Merge Sorted Array | LeetCode Solution | JavaScript | Easy

LeetCodeArraysEasy
> LeetCode Problem - Link [https://leetcode.com/problems/merge-sorted-array/description/] You are given two integer arrays nums1 and nums2, sorted in non-decreasing order, and two integers m and n, representing the number of elements in nums1 and nums2 respe...

1089. Duplicate Zeros | LeetCode Solution | JavaScript | Easy

LeetCodeArraysEasy
> LeetCode Problem - Link [https://leetcode.com/problems/duplicate-zeros/description/] PROBLEM Given a fixed-length integer array arr, duplicate each occurrence of zero, shifting the remaining elements to the right. Note that elements beyond the length of the original array are...

977. Squares of a Sorted Array | LeetCode Solution | JavaScript | Easy

LeetCodeArraysEasy
> LeetCode Problem - Link [https://leetcode.com/problems/squares-of-a-sorted-array/description/] Solving Squares of a Sorted Array was pretty easy, I encountered this in the Arrays 101 course of LeetCode's Explore cards. It was straightforward, first I looped through an array by multiplying every number with itself resulting in...

1295. Find Numbers with Even Number of Digits | LeetCode Solution | JavaScript | Easy

LeetCodeArraysEasy
> LeetCode Problem - Link [https://leetcode.com/problems/find-numbers-with-even-number-of-digits/description/] Another problem - Find Numbers with Even Number of Digits from LeetCode's 101 Array course. This was a pretty easy one to solve, You simply loop through all the numbers, in my case, I converted every number to a s...