Akpotaire Dennisdenniscode.hashnode.dev·Sep 20, 2023Learning DSA in Python: Two SumYou have the below dataset: Orange: #10 Apple: #30 Pawpaw: #40 Lemon: #50 Guava: #60 Pineapple: #70 This dataset is a hypothetical dataset of an e-commerce business. You want to implement the feature that a user will be able to search for p...93 readsPython
franknatefranknate.hashnode.dev·May 19, 2023LeetCode #1 - Two SumProblem Link to the LeetCode Problem: https://leetcode.com/problems/two-sum/. Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly ...58 readsMy journey to Toptalleetcode
Dhawal Pandyadhawalpandya01.hashnode.dev·Apr 14, 2023Solving Two SumI can't solve the partner problem for you, we can at least code the approximation, can't we? The Two Sum question is one that has been known to trip up many a programmer, and yet it is deceptively simple. The Premise The question asks you to find two...DSA