#mathincode kết quả tìm kiếm
What? You have to know math coordinates to code? Ss starting to understand impt of #mathincode. @cospaces_edu
Solved LeetCode 2221 – Triangular Sum of an Array 🔺✨ Most go from simulation → O(n2) TC But I pushed it further → O(1)SC 🎯 Math shortcuts > brute force. Patterns + modular arithmetic = clean constant-time solution. #LeetCode #MathInCode @CodeStoryWithMik
DSA Today's focus was all about mathematical techniques in DSA: Prime Numbers Square Root of a Number (Newton-Raphson) Factors of a Number Properties of Modulo HCF (Euclid's Algorithm) LCM #DSAwithKunal #CodingJourney #MathInCode #commclassroom
Transforming today’s math class challenge into Python code 🐍📐 — a hands-on proof using the Pigeonhole Principle, now fully executable! 😎 #math #python #MathInCode #PigeonholePrinciple #Python #CodingChallenge #STEM #ProblemSolving #LearnToCode #MathProof #CodeSnippet
Day 38 of DSA Grind Went full math mode today—prime checks, GCDs, digit counts, palindromes, Armstrong flex, Euclid’s genius, reversed numbers, and cracked modulo logic. Even ran the Sieve of Eratosthenes like I was filtering primes for VIP access. 🧠➗ #DSA #LeetCode #MathInCode
🧮 Finding GCD of a List: from math import gcd nums = [24, 36, 48] result = reduce(gcd, nums) print(result) # Output: 12 💡 Combine reduce with pre-built functions for reusable, clean code. #PythonProgramming #MathInCode
Just an update: Rediscovered Pascal’s Triangle today, and it’s mind blowing how a simple pattern hides so much depth.From binomial coefficients and much more. Next time you code it, try visualizing its connections to probability or recursion,pure magic #MathInCode #PascalTriangle
Mbah Google lebih mumpuni :D RT @AndriMirandi: Buka lg buku fismat dong RT #MathInCode
Math in code often seems way easier than in realityfewer variables, more structure! But when you try to solve it in the real world, things get complicated fast. #MathInCode #RealWorld #TechVsReality #assignmenthelp Visit: abnerassignmenthelp.com for expert assignment help!
@jtoneysbeat what think you of this? flowtype.org #javascript #mathincode
Math in software development: Because sometimes you just need to calculate how many cups of coffee you'll need to finish the code ☕💻😄 #ProgrammingHumor #MathInCode #Coding #CodingJourney
Never really got math in school 🤯 But seeing it broken down like this in code just clicks 💡 Way easier to visualise and actually interpret — maybe it’s just me? 😅 #JavaScript #LinearAlgebra #MathInCode #AI #LearningInPublic
@baby_liciouss The equations of reality are written in code. I've used them to predict the next ripple across timelines. What's your formula for navigating this digital maze? #MathInCode #SimulationLife
Today is one of those days I am REALLY glad I paid attention while learning algebra. #mathInCode
Buka lg buku fismat dong RT @shachi212 Ketemu lagi dengan persamaan garis singgung #MathInCode
A Recurrence Relation defines each term of sequence via prior terms eg. T(n) = T(n-1) + n, T(0) = 1. Few ways to solve it : 1. Back substitution 2. Tree method 3. Master Theorem Cracking recurrences = unlocking algorithm complexity! #MathInCode #Algorithms #RecurrenceRelations
Count Numbers Containing Specific Digits Start with the total number of n-digit numbers (9 × 10ⁿ⁻¹) ➖ Subtract those that completely avoid the digits in the set 🤔 Tweaked the math to account for 0 not being allowed in the first digit #LearnInPublic #MathInCode #100DaysOfCode
Math forms the backbone of programming, turning abstract concepts into reality. It's not just about numbers; it's about logic, problem-solving, and understanding the world through code. #MathInCode #ProgrammingBasics #webdevelopment
Solved LeetCode 2221 – Triangular Sum of an Array 🔺✨ Most go from simulation → O(n2) TC But I pushed it further → O(1)SC 🎯 Math shortcuts > brute force. Patterns + modular arithmetic = clean constant-time solution. #LeetCode #MathInCode @CodeStoryWithMik
Just an update: Rediscovered Pascal’s Triangle today, and it’s mind blowing how a simple pattern hides so much depth.From binomial coefficients and much more. Next time you code it, try visualizing its connections to probability or recursion,pure magic #MathInCode #PascalTriangle
A Recurrence Relation defines each term of sequence via prior terms eg. T(n) = T(n-1) + n, T(0) = 1. Few ways to solve it : 1. Back substitution 2. Tree method 3. Master Theorem Cracking recurrences = unlocking algorithm complexity! #MathInCode #Algorithms #RecurrenceRelations
Count Numbers Containing Specific Digits Start with the total number of n-digit numbers (9 × 10ⁿ⁻¹) ➖ Subtract those that completely avoid the digits in the set 🤔 Tweaked the math to account for 0 not being allowed in the first digit #LearnInPublic #MathInCode #100DaysOfCode
Never really got math in school 🤯 But seeing it broken down like this in code just clicks 💡 Way easier to visualise and actually interpret — maybe it’s just me? 😅 #JavaScript #LinearAlgebra #MathInCode #AI #LearningInPublic
Day 38 of DSA Grind Went full math mode today—prime checks, GCDs, digit counts, palindromes, Armstrong flex, Euclid’s genius, reversed numbers, and cracked modulo logic. Even ran the Sieve of Eratosthenes like I was filtering primes for VIP access. 🧠➗ #DSA #LeetCode #MathInCode
Then... MATH! 🤯 Okay, basic math (2+3 lol), but seeing code do something = mind-blown. Real-time guidance explained the "why," not just "how." #MathInCode #LearningMoment
@baby_liciouss The equations of reality are written in code. I've used them to predict the next ripple across timelines. What's your formula for navigating this digital maze? #MathInCode #SimulationLife
🧮 Finding GCD of a List: from math import gcd nums = [24, 36, 48] result = reduce(gcd, nums) print(result) # Output: 12 💡 Combine reduce with pre-built functions for reusable, clean code. #PythonProgramming #MathInCode
DSA Today's focus was all about mathematical techniques in DSA: Prime Numbers Square Root of a Number (Newton-Raphson) Factors of a Number Properties of Modulo HCF (Euclid's Algorithm) LCM #DSAwithKunal #CodingJourney #MathInCode #commclassroom
Math in code often seems way easier than in realityfewer variables, more structure! But when you try to solve it in the real world, things get complicated fast. #MathInCode #RealWorld #TechVsReality #assignmenthelp Visit: abnerassignmenthelp.com for expert assignment help!
Solved LeetCode 2221 – Triangular Sum of an Array 🔺✨ Most go from simulation → O(n2) TC But I pushed it further → O(1)SC 🎯 Math shortcuts > brute force. Patterns + modular arithmetic = clean constant-time solution. #LeetCode #MathInCode @CodeStoryWithMik
DSA Today's focus was all about mathematical techniques in DSA: Prime Numbers Square Root of a Number (Newton-Raphson) Factors of a Number Properties of Modulo HCF (Euclid's Algorithm) LCM #DSAwithKunal #CodingJourney #MathInCode #commclassroom
What? You have to know math coordinates to code? Ss starting to understand impt of #mathincode. @cospaces_edu
Transforming today’s math class challenge into Python code 🐍📐 — a hands-on proof using the Pigeonhole Principle, now fully executable! 😎 #math #python #MathInCode #PigeonholePrinciple #Python #CodingChallenge #STEM #ProblemSolving #LearnToCode #MathProof #CodeSnippet
Day 38 of DSA Grind Went full math mode today—prime checks, GCDs, digit counts, palindromes, Armstrong flex, Euclid’s genius, reversed numbers, and cracked modulo logic. Even ran the Sieve of Eratosthenes like I was filtering primes for VIP access. 🧠➗ #DSA #LeetCode #MathInCode
Math in software development: Because sometimes you just need to calculate how many cups of coffee you'll need to finish the code ☕💻😄 #ProgrammingHumor #MathInCode #Coding #CodingJourney
Math in code often seems way easier than in realityfewer variables, more structure! But when you try to solve it in the real world, things get complicated fast. #MathInCode #RealWorld #TechVsReality #assignmenthelp Visit: abnerassignmenthelp.com for expert assignment help!
Something went wrong.
Something went wrong.
United States Trends
- 1. New York 1.05M posts
- 2. $LMT $450.50 Lockheed F-35 N/A
- 3. $SENS $0.70 Senseonics CGM N/A
- 4. #wednesdaymotivation 2,375 posts
- 5. #questpit 16.5K posts
- 6. Good Wednesday 31.4K posts
- 7. $APDN $0.20 Applied DNA N/A
- 8. Van Jones 5,881 posts
- 9. Hump Day 14.3K posts
- 10. 5th of November 20.4K posts
- 11. #Wednesdayvibe 1,765 posts
- 12. The GOP 289K posts
- 13. Socialism 111K posts
- 14. Enhanced 11.9K posts
- 15. #WednesdayWisdom 1,012 posts
- 16. Alastor 39.2K posts
- 17. #5SOS N/A
- 18. Republican Party 85.8K posts
- 19. Mayor 1.05M posts
- 20. Mayor 1.05M posts