Code Corner: Bracket Matching
Problem Given a string with brackets check to see if the brackets are properly nested. Source Example [] = return 1 () => 1...
Read moreCode Corner: Max of 3
Problem Given an n-length Array of integers ranging from -1000 to 1000 find the largest product of three numbers in A that you can...
Read moreCode Corner: 1-minute rule
So today’s task was so easy I’m going to do another one because I solved it way too fast. It’s really not that hard...
Read moreCode Corner: More Array Hijinks
Problem We have another array operations question. This time we are given two inputs, a number n and a 2d array of operations. Each...
Read moreCode Corner: Counting Operations
Problem Codility MaxCounters We are given a number n and an array A of length m where each value in A is less than...
Read moreEvolution of Code Style
When I started programming I developed a particular code style. This style was defined by how I structure my code, how I name things...
Read moreCode Corner: Missing Number
Problem Source: Codility Given an array A of length n filled with integers find the smallest missing positive number. Example: [4,8,1,3,2] => 5 [1,2]...
Read moreCode Corner: Permutation Check
The problem: We are doing a permutation check. Given a list A with n elements and the task is to determine if A is...
Read more