Now that we understand Golangโs project structure and how to write our own packages and commands, itโs time to get to the language basics and learn about variables. We will learn them in a very practical way - by writing code ๐ The keyword var is the basic form to define variables. A var statement … Continue reading Golang: Understanding Variables
Category: Uncategorized
20K + hits on Technobeans…
Just another milestone that proves Technobeans is meeting its objective of making community aware of technologies and helping them solve their problem.. Thanks ๐
An email post from TechnoBeans
Try it!! That's cool! You can post via email... Incredible! ๐
50 posts on TechnoBeans..
50 posts on TechnoBeans..Quite a Milestone ๐
Performance for testing memberships: list vs tuples vs sets
Sets in Python are often used for two purposes: 1. Removing the duplicate entries in a collection 2. For membership testing. By membership, here we mean to find existence of element in a collection The focus of this post is to evaluate performance of list, tuple and set data structures with respect to each other … Continue reading Performance for testing memberships: list vs tuples vs sets