#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
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
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
What? You have to know math coordinates to code? Ss starting to understand impt of #mathincode. @cospaces_edu
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
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!
@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
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
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
🔍 Did you know? In C++, int a = 5/2; gives 2, not 2.5 — because both operands are integers, so it does integer division. 👉 To get 2.5, use: float a = 5.0 / 2; #ProgrammingFacts #CPlusPlus #MathInCode #SoftwareEngineering #CodeTips
@jtoneysbeat what think you of this? flowtype.org #javascript #mathincode
Mbah Google lebih mumpuni :D RT @AndriMirandi: Buka lg buku fismat dong RT #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
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
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
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 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!
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
Something went wrong.
Something went wrong.
United States Trends
- 1. New York 1.22M posts
- 2. #questpit 22.2K posts
- 3. Neal Katyal 1,237 posts
- 4. Van Jones 9,026 posts
- 5. Sauer 4,511 posts
- 6. Lina Khan 1,648 posts
- 7. IEEPA 3,011 posts
- 8. $LMT $450.50 Lockheed F-35 N/A
- 9. #5SOS_SELFIEDAY N/A
- 10. 5th of November 24.1K posts
- 11. $SENS $0.70 Senseonics CGM N/A
- 12. Gorsuch 3,633 posts
- 13. Miss Piggy 3,625 posts
- 14. #wednesdaymotivation 2,929 posts
- 15. $APDN $0.20 Applied DNA N/A
- 16. Alito 8,702 posts
- 17. The GOP 322K posts
- 18. Alastor 50.9K posts
- 19. #Wednesdayvibe 2,208 posts
- 20. Hump Day 18.7K posts