APARTH PRAJAPATIiniamprogrammer.hashnode.dev·Jun 19, 2022 · 2 min readTwitter Bot using Python and Deployed on HerokuIntroduction: Hello Everyone, Let’s check out Twitter Bot using Python. So we’re gonna automate your Twitter account, you can add many functionally as you want and make it even cooler. Let’s get started…. Pre-requisites: First of all, create Twit...00
APARTH PRAJAPATIiniamprogrammer.hashnode.dev·May 18, 2022 · 2 min readDigital RootWhat is a Digital root? if you have done little competitive programming or practice for Data Structure or anything else you have got a problem where you need to sum all digits of the number and do this process until the number becomes a single-digit ...00
APARTH PRAJAPATIiniamprogrammer.hashnode.dev·May 10, 2022 · 3 min readSliding Window Technique## Introduction The sliding window technique is used for reducing some redundant calculations that slow down the program. like it can reduce time complexity from O(n^2) to O(n) with O(1) space complexity. Why use it? First of all it reduce time copl...00
APARTH PRAJAPATIiniamprogrammer.hashnode.dev·May 9, 2022 · 4 min readPascal's TriangleIntroduction In mathematics, Pascal's triangle is a triangular array of binomial coefficients. below you can see what it looks like. 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 How to Build it? First of all start with "1" and the second row as "1 1" then...00