Ashwin ShirvaSep 24, 20235 minGolang - What is go:embed Directive in Go?Introduction In the previous article we delved into the fascinating world of Go Generics and learnt how to incorporate it in our go...
Code RecipeJun 2, 202213 minGo Generics - Everything You Need To KnowGenerics is a programming language paradigm that gives us a way to write code that is not tied to any specific type. It gives us the ability
Code RecipeJan 24, 20227 min3 Sum - Leetcode #15 Short & Simple SolutionGiven an array of integers, nums, return all the triplets in the given array nums[i], nums[j], nums[k] such that i != j, i != k, and j != k