If you experience WIFI (Wireless Networks) Intermittency issue, then keep reading below. The Intermittency issue means that your devices (smartphones, or laptops) occasionally lose the wireless connections (WIFI) for …
Reverse a singly linked list. Example: Input: 1->2->3->4->5->NULL Output: 5->->->2->1->NULL Follow up: A linked list can be reversed either iteratively or recursively. Could you implement both? Reversing a linked …
Kubernetes is getting popular these days – as it is a wonderful way to deploy your applications on the cloud and it scales easily (horizontally). The kubectl get pods …
Given a Integer, we want to convert it to binary string. We can do this iteratively, by concatenating the modulus by two result and shifting the number 1 position …
Given a 2D Grid with integer values representing the colours, you are asked (in an interview probably) to find out the maximum connected colour sizes. A colour is connected …
Given a 2D grid of size n * m and an integer k. You need to shift the grid k times. In one shift operation: Element at grid becomes …