[Leetcode 15] 3Sum
Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0.
Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0.
Starting from Go 1.18, the language introduced generics, allowing developers to write more reusable and type-safe code.
Understanding Pointers in Golang: A Complete Guide
Variable Declaration in Go
Golang (or Go) has a simple but powerful set of data types. Here's a quick breakdown of the main types you’ll encounter:
A curated list covering essential skills across code quality, architecture, problem-solving, and mindset — useful for both junior and senior developers.