by Rezwanul Haque | Mar 23, 2021 | Programming & Development |
Tags: #advance #topic #golang #goroutine #channels #workerpool #threadpool Often we end up with some work which is so time-consuming that if we’re able to assign, multiple person/worker, to do that job the execution time will reduce the time which will save a...
by Rezwanul Haque | Mar 18, 2021 | Data |
When we start learning a new language, we try to find the purpose of the language first so that we can decide if we’re going to use that language in our project or not. So when starting with Go, it’s common that you’ll hear that **” it’s...
by Rezwanul Haque | Mar 16, 2021 | Data |
Sometimes interview questions come with some twist like Solve this problem without using any loops So today I will explain how to solve general input/output (i/o) with test cases problem where special rule defines as saying “Do not use any Loop statement”....
by Rezwanul Haque | Mar 16, 2021 | Programming & Development |
As we start coding and slowly learning about Data Structures(DS), we come across a very famous linear data structure which is known as a linked list. Linked lists and their related questions are quite popular in interviewers who love problem-solving. What is a Linked...
by Rezwanul Haque | Jan 18, 2021 | Programming & Development |
Often we need a different version of go according to specific projects. There are different options we have like we can use Docker for our specific project’s need(we can talk about that in a different blog post). There are several other options but in this blog,...