Link: https://leetcode.com/problems/xor-operation-in-an-array/ Solution: Even if the problem mentions to build an array, we don’t really need one as
Continue readingAuthor: Sebastian Vîrlan
LeetCode – Merge Sorted Array
Link: https://leetcode.com/problems/merge-sorted-array/ Solution: We know that both lists are already sorted, so we will use m and n
Continue readingLeetCode – Intersection of Two Arrays II
Link: https://leetcode.com/problems/intersection-of-two-arrays-ii/ Solution: iterate through nums1, count the occurrence of each element and save the results in a
Continue readingLeetCode Problems
Arrays Difficulty: Easy Monotonic Array Valid Mountain Array Relative Sort Array Decode XORed Array Intersection of Two Arrays
Continue readingLeetCode – Rank Transform of an Array
Link: https://leetcode.com/problems/rank-transform-of-an-array/ Solution 1 (Slower): removing duplicates sorting the array ascending map the initial array by finding the
Continue reading
Azure Key Vault Keys Roll Over – Encrypting PII
Describing the problem – What happens if PII is stored as plain text? Many businesses that build software
Continue reading
Private NuGet Feed in Azure Pipelines with or without Docker
There are a couple of ways you can connect to your Azure Private NuGet Feeds and depending on
Continue reading
After one month at TalkTalk
Can’t believe the time flies so fast, it’s been one month already. Before going into, how was this
Continue reading
Algorithms in Programming – Problems and Solutions
Example of algorithm problems and various solutions Implemented in JavaScript Symmetric Tree Search in a Binary Search Tree
Continue reading
Algorithm: Anagram Checker
Anagram is a word, phrase, or name formed by rearranging the letters of another. Solution 1: using sort
Continue reading