Shivam Dubeycodefarms.in·Jan 14, 2025GraphQL: Implementing Pagination, Filtering, and Sorting (Part-2)In the previous article, we discussed pagination—a critical technique for managing large datasets efficiently in GraphQL. Now, let’s take it a step further. Users often want to do more than just retrieve large datasets in chunks when working with dat...GraphQLGraphQL Filtering
Yogesh Shrimaliyogeshshrimali.hashnode.dev·Jan 14, 2025The Impact of Misordered Limit, Skip, and Sort in MongoDB AggregationsMongoDB provides powerful querying capabilities with a robust aggregation framework, allowing developers to retrieve, filter, transforming, and manipulate data effectively. While the framework is powerful, the order of operations especially when usin...50 readsMongoDB
Gourab Dasgdcademy.hashnode.dev·Dec 29, 2024Merge SortAlgorithm Divide: Split the array into two halves recursively until each subarray contains one element. Conquer: Merge the smaller sorted arrays into a single sorted array. Combine: Use the merge function to merge sorted arrays. Pseudocode for ...20 likesgdcademy
Gourab Dasgdcademy.hashnode.dev·Dec 27, 2024Selection SortExample with Explanation: Let’s take the array: [64, 25, 12, 22, 11] Step-by-Step Execution: First pass (i=0): Initial array: [64, 25, 12, 22, 11] Find the smallest element from the entire array (from index 1 to 4). The smallest element is 11 at ...DSA Navigator: Your Exam CompanionDSA
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 12, 2024Default Method of Array1. Array.Sort() 🧹: Sorts the elements of an array in ascending order. int[] numbers = { 3, 1, 4, 1, 5, 9 }; Array.Sort(numbers); // numbers will be { 1, 1, 3, 4, 5, 9 } 2. Array.Reverse() 🔄: Reverses the order of elements in an array. Array.Revers...array
Gabriel Rufinoblog.gabrielrufino.com·Dec 11, 2024Selection Sort in Rust: A Comprehensive GuideSorting algorithms are essential for understanding computer science and solving numerous practical problems. Among them, Selection Sort stands out as a straightforward algorithm, often used for educational purposes due to its simplicity. In this arti...51 readsRust
Saumyaa Gargsaumyaagarg.hashnode.dev·Dec 9, 2024Day 12: Sorting AdvancedAdvanced sorting algorithms like Merge Sort and Quick Sort play a pivotal role in efficiently managing large datasets, offering optimal solutions in terms of time complexity. On Day 12, the focus was on implementing these techniques, exploring their ...10 likesWeek 2DSA
Saumyaa Gargsaumyaagarg.hashnode.dev·Dec 8, 2024Day 11: Sorting BasicsSorting is one of the foundational concepts in computer science, used to organize data for better accessibility and efficiency in solving problems. On Day 11 of my 100 Days of DSA challenge, I’ll be focusing on implementing sorting algorithms, unders...10 likesWeek 2DSA
Panth Patelhow-is-my-backend.whiteloves.in·Dec 7, 202410 Javascript tools for clear code designHey there, developer! You might need some tools to boost your skills, and here are a few to check out: (https://jsr.io/@panth977/tools) Rate limit function invocation Sometimes you just want to make sure you don't go over the max number of calls to a...JavaScript
esProc Desktopesproc-desktop.hashnode.dev·Dec 5, 2024#111 — Sort in GroupProblem description & analysis: Here below is a data table: Task: Sort the data (in ascending order) by Class and (in descending order) by Score. Solution: Use Excel add-in SPL XLL and enter the following formula: =spl("=E(?1).sort(Class,Maths:-1)",...10 likesexcel