Coding 08 Jul 2019 Minimum absolute difference in an array with Go Problem url: https://www.hackerrank.com/challenges/minimum-absolute-difference-in-an-array/problem Solution: Results are generated in O(n)*log(n) since we are sorting the array first. We can transfer sorted… Andrey
Coding 14 May 2019 Migratory Birds problem from Hackerrank with Go Problem url: https://www.hackerrank.com/challenges/migratory-birds/problem Solution: Results are generated in O(1) while traversing an array. We need to keep track of the… Andrey
Coding 18 Feb 2018 Min Max Sum from hackerrank on C++ Given five positive integers, find the minimum and maximum values that can be calculated by summing exactly four of the… Andrey