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...
> LeetCode Problem - Link [https://leetcode.com/problems/replace-elements-with-greatest-element-on-right-side/description/]
PROBLEM
Given an array arr, replace every element in that array with the greatest element among the elements to its right, and replace the
last element with -1.
After doing...
> 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:...
> LeetCode Problem - Link [https://leetcode.com/problems/check-if-n-and-its-double-exist/description/]
PROBLEM
Given an array arr of integers, check if there exist two indices i and j such that :
* i != j
* 0 <= i, j < arr.length
* arr[i] == 2 * arr[j]
...
> LeetCode Problem - Link [https://leetcode.com/problems/remove-duplicates-from-sorted-array/]
PROBLEM
Given an integer array nums sorted in non-decreasing order, remove the duplicates ...
> 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...
> 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...
> 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...
> 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...
> 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...