FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
🚀 LeetCode Top 150 — Progress Log #1
How-ToMachine Learning

🚀 LeetCode Top 150 — Progress Log #1

via Dev.toDeekshitha1mo ago

I’ve officially started my Top 150 LeetCode journey to strengthen my foundations in Data Structures & Algorithms. ✅ Progress: 3 / 150 Problems Solved Rather than rushing through problems, my focus is on understanding patterns, improving reasoning, and writing cleaner solutions over time. 🧩 Problems Solved Today 1️⃣ Merge Sorted Array Approach: Merged elements from the second array into the first and applied sorting to maintain order. Key Learning: A working solution isn’t always the optimal one. This problem introduced the importance of thinking about pointer-based merging instead of relying purely on sorting. class Solution { public: vector < int > merge ( vector < int >& nums1 , int m , vector < int >& nums2 , int n ) { for ( int i = m ; i < m + n ; i ++ ) { nums1 [ i ] = nums2 [ i - m ]; } for ( int i = 0 ; i < m + n - 1 ; i ++ ) { for ( int j = 0 ; j < m + n - i - 1 ; j ++ ) { if ( nums1 [ j ] > nums1 [ j + 1 ]) { swap ( nums1 [ j ], nums1 [ j + 1 ]); } } } return nums1 ; } }; 2️⃣

Continue reading on Dev.to

Opens in a new tab

Read Full Article
18 views

Related Articles

The Boring Skills That Make Developers Unstoppable in 2026
How-To

The Boring Skills That Make Developers Unstoppable in 2026

Medium Programming • 6h ago

I Installed This VS Code Extension… and My Code Got Instantly Better
How-To

I Installed This VS Code Extension… and My Code Got Instantly Better

Medium Programming • 7h ago

The Age of Personalized Software
How-To

The Age of Personalized Software

Medium Programming • 9h ago

Automating Checkout Add-On Recommendations in WordPress for WooCommerce
How-To

Automating Checkout Add-On Recommendations in WordPress for WooCommerce

Dev.to • 9h ago

How-To

Start Here: Learning to develop your own way with SCSIC

Medium Programming • 13h ago

Discover More Articles