MIMohd Irfaninmdirfan.hashnode.dev·Jan 9, 2023 · 2 min readPair with target sumLeetcode: 167. Two Sum II - Input Array Is Sorted Given an array of sorted numbers and a target sum find a pair of indices in the array whose sum is equal to the given target. 0123456247891214 Target Sum = 13 Output : [1, 4] Approach 1: Bru...00
MIMohd Irfaninmdirfan.hashnode.dev·Jan 8, 2023 · 2 min readPython 01: Python BasicsPython Basics Python is interpreted language, and statements are executed line by line. source code is stored in .py file extension. History Python 1Python 2Python 3 20 Feb 199116 Oct 200003 Dec 2008 From python, we can make - Games - ...00
MIMohd Irfaninmdirfan.hashnode.dev·Jan 8, 2023 · 1 min readDAA 01: Introduction to AlgorithmINTRODUCTION TO ALGORITHM History of Algorithm The word algorithm comes from the name of a Persian author, Muhammad ibn Musa al-Khwarizmi (c. 825 A.D.), who wrote a textbook on mathematics. He is credited with providing the step-by-step rules for ...00
MIMohd Irfaninmdirfan.hashnode.dev·Jan 6, 2023 · 3 min readFront End: 01 | how website works?If you are a developer or you might be coding. But here I’m going to discuss some points about how the actual website works. The basic requirement to structure the layout website is to build Front-End logic. You need to learn these languages. HTML: ...00