Other 17 Jul 2017 Finding a next lucky number with C++. This is an easy task for Monday from Week of Code at Hackerrank. The task is to find a next… 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