Sadman Kabir Soumik
open-menu closeme
Home
artificial-intelligence
software-engineering
cloud-computing
beyond-code
About
linkedin github rss
  • Brute-Force to Optimized Python Solutions for All LeetCode Blind-75 Problems

    calendar Feb 26, 2023 · 98 min read · algorithms leetcode problem solving  ·
    Share on: twitter facebook linkedin copy
    Brute-Force to Optimized Python Solutions for All LeetCode Blind-75 Problems

    Blind-75 is a curated list of 75 LeetCode problems compiled by Yangshun Tay. The list can be accessed at this link. Initially, I solved each problem using a brute-force approach, which often resulted in a Time Limit Exceeded (TLE) error. Then, I solved each problem with an optimized method that was accepted on …


    Read More
  • Understanding Top 10 Classical Machine Learning Algorithms

    calendar Oct 26, 2022 · 42 min read · machine learning data science algorithms  ·
    Share on: twitter facebook linkedin copy
    Understanding Top 10 Classical Machine Learning Algorithms

    Before jumping into Deep Learning, one must know the classical/traditional Machine Learning algorithms, because understanding traditional machine learning algorithms can provide a strong foundation in machine learning concepts. These algorithms often involve simple, intuitive concepts that can be helpful in …


    Read More
  • Cracking the LeetCode Two Sum Variations - All 5 Problems

    calendar Oct 21, 2022 · 5 min read · algorithms leetcode problem solving  ·
    Share on: twitter facebook linkedin copy
    Cracking the LeetCode Two Sum Variations - All 5 Problems

    Author: Sadman Kabir Soumik Original Two Sum Problem 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 one solution, and you may not use the same element twice. You can return the answer in any …


    Read More
  • All 6 Best Time to Buy and Sell Stock Problems Using The Same Formula

    calendar Jun 15, 2022 · 11 min read · algorithms leetcode problem solving  ·
    Share on: twitter facebook linkedin copy
    All 6 Best Time to Buy and Sell Stock Problems Using The Same Formula

    122.Best Time to Buy and Sell Stock II You are given an integer array prices where prices[i] is the price of a given stock on the ith day. On each day, you may decide to buy and/or sell the stock. You can only hold at most one share of the stock at any time. However, you can buy it then immediately sell it on the same …


    Read More
  • Be a Master at Python Through Some Cool Code Snippets

    calendar Jun 27, 2021 · 17 min read · algorithms leetcode problem solving  ·
    Share on: twitter facebook linkedin copy
    Be a Master at Python Through Some Cool Code Snippets

    Combine two lists as a dictionary | dict(zip) Program 1keys = ['a', 'b', 'c'] 2values = [1, 2, 3] 3dictionary = dict(zip(keys, values)) 4print(dictionary) Output 1{'a': 1, 'b': 2, 'c': 3} Program 1keys = ('name', 'age', 'location') 2values = …


    Read More
  • Understanding Logarithm Function

    calendar Aug 6, 2019 · 3 min read · programming algorithms math  ·
    Share on: twitter facebook linkedin copy
    Understanding Logarithm Function

    Logarithms are mathematical operations that are the inverse of exponentiation. In other words, if we have a base b and an exponent x, the logarithm of the resulting number y to the base b is x. This can be written as log_b(y) = x. For example, the logarithm of 1000 to base 10 is 3, because 10^3 = 1000. Similarly, the …


    Read More
  • Understanding Graph Traversal - BFS vs DFS

    calendar Mar 12, 2019 · 7 min read · algorithms problem solving  ·
    Share on: twitter facebook linkedin copy
    Understanding Graph Traversal - BFS vs DFS

    Breadth-first search (BFS) and depth-first search (DFS) are two algorithms for traversing graphs. These algorithms are used to search for specific nodes or to find the shortest path between two nodes in a graph. BFS The breadth-first search (BFS) algorithm is a graph traversal algorithm that explores all of the …


    Read More
  • Basic Coding Problems You Must Be Able to Solve As a Computer Science Graduate

    calendar Feb 22, 2019 · 13 min read · algorithms leetcode problem solving  ·
    Share on: twitter facebook linkedin copy
    Basic Coding Problems You Must Be Able to Solve As a Computer Science Graduate

    Check Prime Number A prime number is a positive integer greater than 1 that has no positive integer divisors other than 1 and itself. For example, the first six prime numbers are 2, 3, 5, 7, 11, and 13. The number 6 is not a prime number because it has more than two positive integer divisors. In fact, the divisors of 6 …


    Read More

SK Soumik photo

SK Soumik

Data Science | Software Engineering
Read More

Categories

MACHINE-LEARNING 25 SOFTWARE-ENGINEERING 18 ALGORITHM-DESIGN 10 SYSTEM-DESIGN 7 PROJECT 6 NON-TECHNICAL 2 OPERATING-SYSTEM 2 BUSINESS 1 CLOUD-COMPUTING 1

Series

ML 19 DSA 6 PROJECT 6 SOFTWARE-ENGINEERING 4 PROBLEM-SOLVING 3 AIRFLOW 1 DJANGO 1 GENERATIVE-AI 1 NLP 1

Tags

MACHINE-LEARNING 23 DATA-SCIENCE 17 PROGRAMMING 12 PYTHON 10 ALGORITHMS 8 DEEP-LEARNING 8 NLP 8 PROBLEM-SOLVING 6 PROJECT-TUTORIAL 6 SOFTWARE-ENGINEERING 6 ALGORITHM 5 LEETCODE 5 SYSTEM-DESIGN 5 ARTIFICIAL-INTELLIGENCE 3
All Tags
AIRFLOW1 ALGORITHM5 ALGORITHMS8 ARTIFICIAL-INTELLIGENCE3 AUTOMATION1 BOT-DEVELOPMENT1 BUSINESS1 CLOUD1 COMPUTER-VISION2 DATA-SCIENCE17 DEEP-LEARNING8 DJANGO1 ELASTICSEARCH1 GENERATIVE-AI1 GENERATIVE-AI-MODELS1 GOOGLE-CLOUD1 IMAGE-SEGMENTATION1 INDEX1 LEETCODE5 LIFE-HACK1 LINUX2 MACHINE-LEARNING23 MATH1 MLOPS2 NLP8 OPERATING-SYSTEM1 OPTIMIZATION1 PROBLEM-SOLVING6 PRODUCTIVITY1 PROGRAMMING12 PROJECT-TUTORIAL6 PROXY1 PYTHON10 SOFTWARE-ENGINEERING6 SPARK1 START-UP1 STATISTICS1 SYSTEM-DESIGN5 WEB-DEVELOPMENT1 WEB-SCRAPING1
[A~Z][0~9]
Copyright © 2022, Sadman Kabir Soumik

Copyright  COPYRIGHT © 2022, SADMAN KABIR SOUMIK. All Rights Reserved

to-top