排序
Accountable Privacy in Web3 (3/4)
Accountable Privacy in Web3 (3/4),Now that we've covered the key cryptographic concepts in Web3, let's try and implement them in code! We'll start the article by setting up an Elli...
Merging Two Sorted Linked List in Java
Merging Two Sorted Linked List in Java, Blog Post: Merging Two Sorted Linked Lists - My In-Place Solution When I first encountered the 'Merge Two Sorted Lists' problem, I was excit...
Big O Notation Explained, why is it important?
Big O Notation Explained, why is it important?, Big O Notation is important because it helps analyze the efficiency of algorithms. - geeksforgeeks.org When writing code, efficiency...
Hopscotch Problem In Python
Hopscotch Problem In Python,Imagine you’re sitting by the window, coding. Suddenly, your attention is drawn to a little girl outside, playing hopscotch. She carefully jumps across...
Gemika’s Enchanted Guide to Iris Dataset with Magic and Machine Learning 🧙️ (Part #2)
Gemika’s Enchanted Guide to Iris Dataset with Magic and Machine Learning 🧙️ (Part #2), Gemika’s Enchanted Guide to Iris Dataset with Magic and Machine Learning 🧙️ (12 Par...
Gemika’s Enchanted Guide to Iris Dataset with Magic and Machine Learning 🧙️ (Part #1)
Gemika’s Enchanted Guide to Iris Dataset with Magic and Machine Learning 🧙️ (Part #1), Gemika’s Enchanted Guide to Iris Dataset with Magic and Machine Learning 🧙️ (12 Par...
Do you know how to evaluate performance of your Java applications?
Do you know how to evaluate performance of your Java applications?,Recently, while chatting with an Expert here at MELI (Mercado Livre), I asked more about his past experiences, cu...
Você sabe avaliar performance de suas aplicações Java?
Você sabe avaliar performance de suas aplicações Java?,Recentemente, enquanto conversava com um Expert aqui no MELI (Mercado Livre), perguntei mais sobre as experiências passad...
Multithreading | Java BlockingQueue
Multithreading | Java BlockingQueue, What is BlockingQueue? BlockingQueue is a data structure to provide Queue like capability in multithreading environment. what actually means wh...
Maximum Absolute Sum of Any Subarray LC – 1749
Maximum Absolute Sum of Any Subarray LC - 1749,Question link on leetcode: Leetcode Intuition Maximum subarray sum: Kadane's algorithm Approach Take two sums, Max subarray sum and M...
Linear search and Binary search programs
Linear search and Binary search programs, Linear Search: int[] ar = {10,45,67,100} int key = 67; for(int i=0;i<ar.length;i++) { if(ar[i]==key) System.out.println('key is present...
Particle Swarm Optimization and Its Implementation in Python
Particle Swarm Optimization and Its Implementation in Python,updates: 2025-02-15: Remove the return statement in Swarm.optimize since gbest_position and gbest_score are accessibles...