#100daysofcoding Suchergebnisse

Keine Ergebnisse für "#100daysofcoding"
Keine Ergebnisse für "#100daysofcoding"
Keine Ergebnisse für "#100daysofcoding"

Day 23–25: Animations and Transitions Add transitions (transition) for hover effects. Create keyframes (@keyframes) for animations. Practice: Animate a button and a sliding image on hover. #100daysofcoding #buildinpublic #programming

abolaji_web's tweet image. Day 23–25: Animations and Transitions
Add transitions (transition) for hover effects.
Create keyframes (@keyframes) for animations.
Practice: Animate a button and a sliding image on hover.

#100daysofcoding #buildinpublic #programming
abolaji_web's tweet image. Day 23–25: Animations and Transitions
Add transitions (transition) for hover effects.
Create keyframes (@keyframes) for animations.
Practice: Animate a button and a sliding image on hover.

#100daysofcoding #buildinpublic #programming

In 15th day of #100DaysOfCoding in python I made a simple variant of a coffee machine

martin34581's tweet image. In 15th day of #100DaysOfCoding in python I made a simple variant of a coffee machine

Completed 100 #Leetcode problems in 35 days. it is just a start have to solve more ! #DSA #100daysofcoding

_kedar_18's tweet image. Completed 100 #Leetcode problems in 35 days.
it is just a start have to solve more !
#DSA #100daysofcoding

Day 72 of #100daysofcoding "Solved the #MaxPower problem on #LeetCode! 💻🔥 Used a simple iterative approach to find the maximum power of a given number. #coding #algorithms #leetcode"

sam1368296's tweet image. Day 72 of #100daysofcoding "Solved the #MaxPower problem on #LeetCode! 💻🔥 Used a simple iterative approach to find the maximum power of a given number. #coding #algorithms #leetcode"

Done day 88 of #100daysofcoding @ #NxtWave CCBP 4.0 Technology. Today I learned Tuples and Sequence in #Python. #Consistency #Fullstack #Backend #AIML

shaswatswain53's tweet image. Done day 88 of #100daysofcoding @ #NxtWave CCBP 4.0 Technology.
Today I learned Tuples and Sequence in #Python.
#Consistency #Fullstack #Backend #AIML

Day 60 of #100daysofcoding: 🔄 Binary Tree Level Order Traversal! 📍 Uses a queue to process nodes level by level, appending child nodes for next iteration ⏱️ O(n) time, O(n) space—efficient for complete traversal! 🚀 #learninpublic

piyushmalik34's tweet image. Day 60 of #100daysofcoding: 🔄 Binary Tree Level Order Traversal!  
📍 Uses a queue to process nodes level by level, appending child nodes for next iteration  
⏱️ O(n) time, O(n) space—efficient for complete traversal! 🚀 #learninpublic

Day 62 of #100daysofcoding: 🧠 Validating a Binary Search Tree! 📍 Uses recursion with bounds (min/max) to verify node placement 🧮 ⏱️ O(n) time, O(h) space for recursion stack, where h is tree height #LeetCode #BST #learninpublic

piyushmalik34's tweet image. Day 62 of #100daysofcoding: 🧠 Validating a Binary Search Tree!  
📍 Uses recursion with bounds (min/max) to verify node placement 🧮  
⏱️ O(n) time, O(h) space for recursion stack, where h is tree height  
#LeetCode #BST #learninpublic

Day 74 of #100DaysOfCoding 🚀 🔹 Learned how to use .toFixed() and .toLocaleString() for formatted number output. 🔹 Started exploring JavaScript operators and their practical use cases. 🔹 Built a simple EMI Calculator using core Math functions — great hands-on practic! #zigbee

Nandandip_1414's tweet image. Day 74 of #100DaysOfCoding 🚀
🔹 Learned how to use .toFixed() and .toLocaleString() for formatted number output.
🔹 Started exploring JavaScript operators and their practical use cases.
🔹 Built a simple EMI Calculator using core Math functions — great hands-on practic!
#zigbee
Nandandip_1414's tweet image. Day 74 of #100DaysOfCoding 🚀
🔹 Learned how to use .toFixed() and .toLocaleString() for formatted number output.
🔹 Started exploring JavaScript operators and their practical use cases.
🔹 Built a simple EMI Calculator using core Math functions — great hands-on practic!
#zigbee

Day 72 of #100DaysOfCoding 💻✨ Today I worked on another layout using JavaScript input methods, exploring how to capture and handle user data more effectively. Also learned some new vocabularies to improve my communication skills 📚💬 #zigbee #JavaScript #WebDevelopment

Nandandip_1414's tweet image. Day 72 of #100DaysOfCoding 💻✨

Today I worked on another layout using JavaScript input methods, exploring how to capture and handle user data more effectively.
Also learned some new vocabularies to improve my communication skills 📚💬
#zigbee #JavaScript #WebDevelopment
Nandandip_1414's tweet image. Day 72 of #100DaysOfCoding 💻✨

Today I worked on another layout using JavaScript input methods, exploring how to capture and handle user data more effectively.
Also learned some new vocabularies to improve my communication skills 📚💬
#zigbee #JavaScript #WebDevelopment
Nandandip_1414's tweet image. Day 72 of #100DaysOfCoding 💻✨

Today I worked on another layout using JavaScript input methods, exploring how to capture and handle user data more effectively.
Also learned some new vocabularies to improve my communication skills 📚💬
#zigbee #JavaScript #WebDevelopment

Day 60 of #100daysofcoding: 🚀 Implement Trie Prefix Tree! 🔑 Uses nested TrieNode objects with a dictionary for children, marking ends of words for efficient insert/search/prefix match. ⏱️ O(m) time per operation, O(n * m) space for n words of length m. #learninpublic

piyushmalik34's tweet image. Day 60 of #100daysofcoding: 🚀 Implement Trie Prefix Tree!  
🔑 Uses nested TrieNode objects with a dictionary for children, marking ends of words for efficient insert/search/prefix match.  
⏱️ O(m) time per operation, O(n * m) space for n words of length m. #learninpublic

Day 57 of #100daysofcoding: 3Sum Closest challenge! 🔢 Sort array, iterate with a fixed pointer, use two pointers to find closest sum to target. 🧭 Efficiently updates best match, skipping duplicates. ⏱️ O(n²) time, O(1) space—quick and direct! 🚀 #learninpublic

piyushmalik34's tweet image. Day 57 of #100daysofcoding: 3Sum Closest challenge! 🔢  
Sort array, iterate with a fixed pointer, use two pointers to find closest sum to target. 🧭 Efficiently updates best match, skipping duplicates. ⏱️ O(n²) time, O(1) space—quick and direct! 🚀 #learninpublic

Day 57 of #100daysofcoding: 🔢 Minimum Operations To Make Array Sum Divisible By K 📍 Approach: Sum array, check remainder with K, return remainder to indicate ops needed. ⏱️ O(n) time, O(1) space—simple and efficient! 🚀 #learninpublic

piyushmalik34's tweet image. Day 57 of #100daysofcoding: 🔢 Minimum Operations To Make Array Sum Divisible By K  
📍 Approach: Sum array, check remainder with K, return remainder to indicate ops needed.  
⏱️ O(n) time, O(1) space—simple and efficient! 🚀 #learninpublic

Day 59 of #100daysofcoding: 🧱 Largest Rectangle in Histogram! 📍 Uses monotonic stacks to find previous/next smaller bars, calculating max width per height. ⚡ O(n) time, O(n) space for efficient max area calculation. Simple, powerful method! 🚀 #learninpublic

piyushmalik34's tweet image. Day 59 of #100daysofcoding: 🧱 Largest Rectangle in Histogram!  
📍 Uses monotonic stacks to find previous/next smaller bars, calculating max width per height.  
⚡ O(n) time, O(n) space for efficient max area calculation.  
Simple, powerful method! 🚀 #learninpublic

Day 63 of #100daysofcoding: 🔢 Count Partitions With Even Sum Difference! 📍 Checks if total sum is even; if yes, returns `len(nums) - 1`, else 0. ⏱️ O(n) time, O(1) space—simple and efficient! 🚀 #learninpublic

piyushmalik34's tweet image. Day 63 of #100daysofcoding: 🔢 Count Partitions With Even Sum Difference!  
📍 Checks if total sum is even; if yes, returns `len(nums) - 1`, else 0.  
⏱️ O(n) time, O(1) space—simple and efficient! 🚀 #learninpublic

Day 54 of #100daysofcoding: Longest Harmonious Subsequence! 🎯 Uses a Counter to tally numbers, then finds max length between neighbors (key and key-1). 🧮 Time & space: O(n) — efficient for large inputs! 🚀 #learninpublic

piyushmalik34's tweet image. Day 54 of #100daysofcoding: Longest Harmonious Subsequence! 🎯  
Uses a Counter to tally numbers, then finds max length between neighbors (key and key-1). 🧮  
Time & space: O(n) — efficient for large inputs! 🚀 #learninpublic

Day 54 of #100daysofcoding: 📊 Longest Harmonious Subsequence! 🔍 Uses a frequency map with Counter, then checks neighbors to find max length ⏱️ O(n) time, O(n) space—efficient and straightforward! 🚀 #learninpublic

piyushmalik34's tweet image. Day 54 of #100daysofcoding: 📊 Longest Harmonious Subsequence!  
🔍 Uses a frequency map with Counter, then checks neighbors to find max length  
⏱️ O(n) time, O(n) space—efficient and straightforward! 🚀 #learninpublic

Day 63 of #100daysofcoding: 🔢 Count Partitions With Even Sum Difference! Uses suffix sums to quickly compute subarray totals, then checks for even differences while iterating. ⏱️ O(n) time, O(n) space — efficient and straightforward! 🚀 #learninpublic

piyushmalik34's tweet image. Day 63 of #100daysofcoding: 🔢 Count Partitions With Even Sum Difference!  
Uses suffix sums to quickly compute subarray totals, then checks for even differences while iterating.  
⏱️ O(n) time, O(n) space — efficient and straightforward! 🚀 #learninpublic

🚀 Day 65 of #100DaysOfCoding Today I tried to replicate the Netflix front page using Bootstrap. ✨ Explored Bootstrap dropdowns and learned how to customize them. 📚 Picked up some new vocabularies too! Loving the UI journey! #zigbee

Nandandip_1414's tweet image. 🚀 Day 65 of #100DaysOfCoding
Today I tried to replicate the Netflix front page using Bootstrap.
✨ Explored Bootstrap dropdowns and learned how to customize them.
📚 Picked up some new vocabularies too!

Loving the UI journey!
#zigbee

Loading...

Something went wrong.


Something went wrong.


United States Trends