Posts

Showing posts from January, 2021

Why farmer protest supporter are boycotting Ambani and Adani | Boycott JIO trend in the twitter

Image
Farmers are protesting against the government recently promoted three Farmers Law.  They want it to anyhow taken back. It is already around 2-3 months, But it all goes in vain when the huge uncontrolled protestor enters the Red Fort and planted the religious flag in front of the national flag.   The massive destruction caused, on the image of the nation by this protestor leads to the shift of emotion of common Indian. At first, it seems was a farmer moment but after the entry of Khalistan and various religious groups, this moment has had no sense now. But Apart from this, the online brigade is at a high peak. They started a moment against the corporate and rich people. For them, it is like they are targeting one person. But what about the employees and workers who are working in those companies. Are they going to provide them a job?  Especially the most targeted among all corporate are Mukesh Ambani the founder of reliance Jio and Adani. They think of them as the most closes to

Installing rdkit in google colaboratory | Direct installation| latest issue resolved

 Rdkit is an open-source library that is required to study molecular dynamics. Many people faced problem while installing it, especially in Google Colaboratory. I am giving you the easiest solution for that. Hope you like this solution. please subscribe to the blog.

Closing the tweet (TWTCLOSE) | Codechef problem detail explanation | How to make row vector of zeros

Since due to a copyright issue I can't post the question here but, You can look at the question here click here .  Since now you are familiar with the question, don't worry if you have not understood it. Let me help you with that. First of all, we have to get what the actual question wants to say.  There are two children A and B.  We have N tweets We have K operation to be performed Initially, all tweet is closed On clicking open tweet it gets closed If we click " CLOSEALL " the tweet get closed At the end of the operation, we have to find how many tweets are open. So this is the general information that our question wants to convey. Now since we know it, let us move on to the input requirement after that we will move towards the algorithmic approach. The first line of the input must contain N, K the number of tweets, and the number of clicks or operations performed. Then there will be the sequence of input of K operation where we will be provided the command a

How to find Prime Number in Python | Library to find prime number in python | Codechef, Hackerrank problems

Before getting into the actual programming section, we must first understand what actually is a prime number. So the number that is strictly greater than 1 and is only divisible by 1 and by itself. Okay, I think you get the basic understanding. So let us have a rough estimation of what is happening. First thing First:  The number should be strictly greater than 1 We have to consider 2 as a prime number, as well as a number divided by 2 to be non-prime If a number gets divided by any other number, other then 1 then it should be non-prime Let us start our coding, we will be coding in multiple aspects at first we will do general coding according to CodeChef and Hackerrank platform. Then after that, we will be moving in a well-defined format or writing it as a professional function. As in every CodeChef problem we have to provide the number of the test cases. Here we are taking it as "t" since it is an integer we can directly manipulate it as  int ( input ()) .  Now we will app

Application of Machine learning in Bioinformatics

Image
Machine learning is a wide field, where we are supposed to make a machine or system learned. It can generally be done by Supervised learning, unsupervised learning, and reinforcement learning.  Image by liyuanalison from Pixabay Supervised learning means that we are given a dataset and we already know what is its outcomes. We find the relation between input and output data based on various parameters.   Unsupervised learning on the other hand allows us to approach the problem with little or no idea what our result will look like. Here we don’t have parameter already allowed it is the journey of the model which decide the parameter according to the closer relation. We can derive the structure by clustering the data.  Apart from this, we have Reinforcement learning. It means to learn from the error. You may be familiar with the self-driving car concept. Where each correct step is rewarded and the wrong step leads to the deduction in point. The model learns on the basis of trial and erro