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
Uncategorized 03 Apr 2017 Display image from Google Docs in the Github readme The easies way to add an image to the Github readme that I can think of is displaying it from… Andrey
tvOS 06 Oct 2016 tvOS 10 wide top shelf Image size tvOS 10 brings new things that are required Top shelf wide image size is: 2320px by 720px Andrey
iOS 19 Sep 2016 How to hide strange unwanted Xcode 8 logs Running app in the simulator in a new shine xcode 8 noticed that there are a lot of extra information… Andrey
Other 14 Sep 2016 Singleton in iOS Recommended way of creating singleton according to Apple is in the following way: + (AKMySingleton *)sharedInstance { static AKMySingleton *_sharedInstance… 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
Basic Questions in IOS & objective-c, iOS 15 Apr 2016 Google phone interview for iOS mobile developer position An outline of google phone interview: Question 1 // Create a function that takes int numbers[1000] and sorts it into… Andrey