Joy Shreejoyofcode.hashnode.dev·16 hours ago#3.Journey to DSA in C++Unlocking the Power of Data Structures and Algorithms in C++: A Journey Through Arrays "Hey there! 🌟 It's Joyshree 👋, and I'm absolutely stoked to kickstart my journey into the wonderful world of Data Structures and Algorithms (DSA) using C++. 🚀 I...DiscussDSA
Kallol Bairagikallolbairagi.hashnode.dev·Oct 2, 2023#20.Valid Parenthesis [LeetCode Grind 75 in Rust]impl Solution { pub fn is_valid(s: String) -> bool { let mut ans: bool = false; let mut char_par_stack = vec![]; for c in s.chars() { match c { '(' | '{' | '[' => char_par_stack.push(c), ...Discuss·10 likesLeetcode Grind 75 in RustDSA
harsh sehrawatharsehrawat.hashnode.dev·Oct 2, 2023Day 19/90DaysOfCoding- Basics of DDL,DML,DQL - Constraints & For DSA -> - Rotated Sorted Array 2 -Rotate Array -> Tomorrow target , DBMS till joins , and cycle sort in DSA .DiscussDBMS
Kallol Bairagikallolbairagi.hashnode.dev·Oct 2, 2023#1.Two Sum [LeetCode Grind 75 in Rust]use std::collections::HashMap; impl Solution { pub fn two_sum(nums: Vec<i32>, target: i32) -> Vec<i32> { let mut map_of_numbers = HashMap::with_capacity(nums.len()); let mut ans: Vec<i32> = Vec::new(); for (i , &v) i...Discuss·10 likesLeetcode Grind 75 in RustDSA
anto mervinantomervin.hashnode.dev·Oct 2, 2023Pre-DSA Essentials: Pass By Value , Pass By Reference and Arrays in C++Hello 🌟, Welcome back to my exciting journey of learning Data Structures and Algorithms (DSA) using C++. In today's session, which I like to call "Pre-DSA Part 2," we'll be exploring some more fundamental concepts that will lay a solid foundation fo...DiscussDSA
Alisha Kausheenalishakausheen.hashnode.dev·Oct 2, 2023Moore's Voting AlgorithmAs the name suggests "Voting Algorithm", involves a concept of voting i.e. which candidate got the maximum vote or which event occurred the maximum number of times wins the election or the selection. So in the concept of Data Structures and Algorithm...DiscussDSA
Sumit Mazumdarsumitmazumdar.hashnode.dev·Oct 1, 2023A quick guide for queueA queue is a linear data structure that is open at both ends and the operations are performed in First In First Out (FIFO) order. We define a queue to be a list in which all additions to the list are made at one end, and all deletions from the list a...Discussqueue
Joy Shreejoyofcode.hashnode.dev·Oct 1, 2023#2 .journey Of Dsa In C++Unlocking the Power of Data Structures and Algorithms in C++: A Journey Through Arrays "Hey there! 🌟 It's Joyshree 👋, and I'm absolutely stoked to kickstart my journey into the wonderful world of Data Structures and Algorithms (DSA) using C++. 🚀 I...DiscussDSA
Abraham Yepremiandailydsa.com·Oct 1, 2023Day 59: Bit ManipulationToday I covered the topic of bit manipulation and went over relevant leetcode problems. Working on these problems varied in difficulty, as some of them also required knowing a sort of trick to be able to solve.DiscussBlogging
Alankrit Vermaalankrit.hashnode.dev·Oct 1, 2023The Two Pointers Algorithm: A Comprehensive GuideThe Two Pointers Algorithm is a versatile technique used in solving array and string manipulation problems, especially when dealing with sorted arrays or linked lists. It is a crucial tool for developers and competitive programmers due to its efficie...DiscussComputer Science