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