Sunkara Mallikharjunatomandjerry-blogs.hashnode.dev·an hour agoData Structures using Pythonpython has 5 built-in data structures list, tuple, dictionary, set. These can be categorized into two types Ordered built-in data structures: In this type of data structure, we can expect the data to be stored based on an index starting from 0 inde...DiscussData Science
Dozie EmodiforDozie Emodi's team blogdozzy.hashnode.dev·4 hours agoUnderstanding Queue Data Structure and Algorithms (FIFO) in JavaScriptQueues are a fundamental data structure in computer science, used to manage and manipulate data in a specific order. One of the most common queue implementations is the FIFO (First-In-First-Out) model. In this article, we will delve into the details ...DiscussDSA
Preetika Prakashpreetikaprakash.hashnode.dev·5 hours agoDSA Day 95/100Topic: Strings 1) Reverse Words in StringMedium Input: s = "a good example" Output: "example good a" Explanation: You need to reduce multiple spaces between two words to a single space in the reversed string. public String reverseWords(String s) ...Discuss100DaysOfCode
Tiger AbrodiProtigerabrodi.hashnode.dev·19 hours agoWTF is O(log n)?Introduction I had a hard time understanding O(log n) . I'm a high school dropout. I don't know shit about logarithms. So I ended up writing this for my own understanding. Analogy Let's say you're trying to guess a number between 1 and 1024, and with...Sandeep Panda and 1 other are discussing this2 people are discussing thisDiscuss·12 likes·229 readsalgorithms
Sufiyan Arif Chougulesufiblogs.hashnode.dev·8 hours agoA Brief Overview of Data Structures.Data Structures and Algorithms are closely related to improving the thinking process of a student who is a Computer Science enthusiast. The way of thinking is modified right from the simple basics, all the way up to more complex possibilities. This m...Discussdata structures
Imad Adrees datascian.hashnode.dev·11 hours agoApplied Scientist or Data Scientist?Noise about Applied Scientists has started to rise in the data field. Even, Amazon has been hiring them for a long time. Applied Scientist Data Science is an evolving domain, which brings a lot of exciting and complex things to the data field. As da...DiscussData Science
Austin Davidtech-talks.hashnode.dev·16 hours agoDiscovering Patterns and Insights in Unlabeled DataHello everyone, I am Austin David, a technology enthusiast and a veteran in the field of data analytics. Having collaborated extensively with a renowned Data Analytics company in Bangalore, I've had the opportunity to dive deep into the world of data...DiscussData Science
Sai Sumanth Kovurubuildskillswithsumanth.hashnode.dev·Sep 20, 2023Fun With Expressions Problem | Evaluating the Mathematical ExpressionsProblem Statement Given a string s which represent an expression, evaluate this expression.(No brackets involved) Integer division should truncate towards zero. Example 1: Input: s = "10*20+10" Output: 210 Example 2: Input: s = "16*5-5/15" Output: 80...Discussdata structures
Abraham Yepremiandailydsa.com·Sep 20, 2023Day 48: Graphs - Matrix DFSToday I continued to go over graphs and specifically studied matrix DFS and went over relevant leetcode problems. It was one of the more challenging topics so far since it combines topics like recursion, backtracking, DFS, and the new concept of grap...DiscussBlogging
Preetika Prakashpreetikaprakash.hashnode.dev·Sep 19, 2023DSA Day 94/100Topic: Strings 1) Length of last wordEasy Input: s = " fly me to the moon " Output: 4 Explanation: The last word is "moon" with length 4. public class lengthoflastword { public static int lengthOfLastWord(String s) { Stri...DiscussStrings