Coding 04 Dec 2017 Find a second largest number in array with Javascript Back to the simple coding questions. This time with javascript - it seems the easiest language to test with. Code… Andrey
Coding 10 Jul 2017 Missing Numbers Hackerrank problem with C++ https://www.hackerrank.com/challenges/missing-numbers/problem Solved using sorting two arrays, finding missing number in the loop and putting them in the set. #include <cmath>… Andrey
Coding, iOS 04 Jul 2017 Insert a node into Linked list with C++ Check if Linked List is null and just create a Node. Otherwise, run to the end of the linked list… Andrey
Coding, iOS 03 Jul 2017 2D Array easy hackerrank challenge in Swift 3 https://www.hackerrank.com/challenges/2d-array Had to refresh memory how to parse input from Hackerrank in Swift 3. import Foundation; func run() { var… Andrey
Coding, iOS 07 Jul 2016 Problem Given an array of elements, find the maximum possible sum of a Contiguous subarray Non-contiguous (not necessarily contiguous) subarray.… Andrey
Coding, iOS 06 Jul 2016 Diagonal Difference from HackerRank in Swift Problem Given a square matrix of size , calculate the absolute difference between the sums of its diagonals. Input Format… Andrey
Coding 08 Mar 2016 Flatten a recursive Linked List in Objective-C Given a linked list, where each node's value can itself be a linked list (a recursive linked list), write a… Andrey
Coding 04 Mar 2016 Sherlock and Array – Question from hackerrank Just finish a fun question from Hackerrank: Sherlock and Array Question description: Watson gives Sherlock an array AA of length… Andrey
Coding 10 Feb 2016 Coding question print binary tree by level in Objective C This question was previously asked on the Facebook interview. Given input as a binary tree print to console each level… Andrey