https://github.com/arttet/interview-preparation-kit-in-go
:open_book: The Interview Preparation Kit in Go
https://github.com/arttet/interview-preparation-kit-in-go
algorithm-challenges algorithms algorithms-and-data-structures
Last synced: 3 months ago
JSON representation
:open_book: The Interview Preparation Kit in Go
- Host: GitHub
- URL: https://github.com/arttet/interview-preparation-kit-in-go
- Owner: arttet
- License: apache-2.0
- Created: 2020-10-04T16:04:09.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-01-20T14:16:53.000Z (6 months ago)
- Last Synced: 2025-04-10T13:33:45.617Z (3 months ago)
- Topics: algorithm-challenges, algorithms, algorithms-and-data-structures
- Language: Go
- Homepage: https://arttet.github.io/Interview-Preparation-Kit-in-Go/
- Size: 23.1 MB
- Stars: 5
- Watchers: 1
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# [Minimum Absolute Difference in an Array](https://www.hackerrank.com/challenges/minimum-absolute-difference-in-an-array)
__Complexity Analysis__:
* Time complexity: _O(n * log n)_.
* Space complexity: _O(1)_.