Source

Golang: Check if a key exists in map

Hi people! I am working at ASAPP and a lot of my work involves writing Golang code. This is the first time I am working with Golang full-time. I picked up a couple of tricks from my colleagues and mentors here and would like to share them with you.

In this particular post, I will talk about the empty struct. There was a scenario where I wanted to check if two slices contained the same elements or not. Go doesn’t provide an easy way to do this. As far as I know, there is no API for slices which provide us a way to do something like this:

mySlice := []string{"Yasoob", "Ali", "Ahmed"}
mySlice.contains("Yasoob")

This is a gross simplification of the actual problem I had to address but the basic idea is the same. Now we can loop over the whole slice and check if a value exists by doing something like this:

var flag bool
for _, val := range mySlice{
    if val == "Yasoob"{
        flag = true
    }
}

But this doesn’t scale really well. What if we have thousands of entries in the slice and we have to check for existence every second? In the worst case scenario, we will have to loop over the whole slice each time.

In such a scenario we can use a map instead of a slice. The sole reason for using them is that the lookup is a lot faster. Now you might be asking that what should we map these strings to? And the answer is an empty struct! The reason being that an empty struct doesn’t take up any space! This way we will not get a lot of extra space consumption overhead.

So now we can rewrite the code like this:

myMap := map[string]struct{}{
    "Yasoob": struct{}{},
    "Ali":    struct{}{},
}
_, ok := myMap["Yasoob"]
if ok{
    fmt.Println("exists!")
}

The way it works is that a map provides a very good API for checking if a key exists or not. It gives two return values. The first is the value mapped to the key and the second is a boolean which tells us whether the key exists in the map or not.

The _ in the code above gets assigned the value mapped with the key “Yasoob”. We don’t care about the value as it is just an empty struct so we just discard it by assigning it to _. We do, however, care about whether the key was found or not. That is why we have a variable called “ok”. If the key was found then ok will get a bool value of true and if the key wasn’t found then it will get a value of false. Simple eh?

Now you have a nice way to check if something exists or not in a lot less time!

Newsletter

×

If you liked what you read then I am sure you will enjoy a newsletter of the content I create. I send it out every other month. It contains new stuff that I make, links I find interesting on the web, and occasional discount coupons for my book. Join the 5000+ other people who receive my newsletter:

I send out the newsletter once every other month. No spam, I promise + you can unsubscribe at anytime

✍️ Comments

Hannan Ali

That’s pretty neat! Thank you for sharing!

Say something

Send me an email when someone comments on this post.

Thank you!

Your comment has been submitted and will be published once it has been approved. 😊

OK