Top Tweets for #MathInCode
DAY 4: Logic is taking over.
I’m building a growth predictor for #Vantage.
I’ve implemented a parabolic function to calculate:
•Estimated followers over time
•Daily post frequency vs Reach
The goal: Turn data into a roadmap #BuildInPublic #AndroidDev #MathInCode #VantageProject

"Math meets C#! 💻
Students & educators—explore how vectors & matrices come alive in code.
🔗 [https://t.co/kH4UnJPdvB](https://t.co/kH4UnJPdvB)
#CSharp #MathInCode #STEM"

#CSharp #MathInCode #STEM" https://t.co/vK1kCuHc2p](https://pbs.twimg.com/media/HDzQtwnXcAAPfWz.jpg)
🧮 ACM India celebrates the beauty of numbers and the art of algorithms!
Let’s honor the minds that transform mathematics into the language of computing.
Happy National Mathematics Day!
#ACMIndia #NationalMathematicsDay #MathInCode #LoveForAlgorithms
📌 Math × CSS: Overflow Explained
In Math, when a value goes beyond its boundary, it's out of range
In CSS, when content goes beyond its container, we call it overflow
We control it with:
hidden |scroll |auto
Math Boundary = CSS Overflow Boundary
#CSS #BuildInPublic #mathincode
~ Math × CSS: The Connection ~
Let's think of CSS like math function!
🧠 Math: f(x) = x²
💻 Web: CSS(HTML) = Styled Page
HTML ➡️ gives the structure (x)
CSS ➡️ transforms it into beauty (f(x)) ✨
#WebDev #LearnCSS #MathInCode #FrontendFun
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

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
🚀 From 1 element → 1 row → full triangle!
Pascal’s Triangle III builds all rows:
row[j] = row[j-1] * (i-j+1) / j
⏱ O(N²) | 🗂 O(N²)
#Day8 #100DaysOfCode #DSA #MathInCode #StriversSheet
![soumxyz05's tweet photo. 🚀 From 1 element → 1 row → full triangle!
Pascal’s Triangle III builds all rows:
row[j] = row[j-1] * (i-j+1) / j
⏱ O(N²) | 🗂 O(N²)
#Day8 #100DaysOfCode #DSA #MathInCode #StriversSheet https://t.co/1BBwcFpVAh](https://pbs.twimg.com/media/GyK4PRqWYAELAFM.jpg)
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

🚀 Pascal’s Triangle II shortcut:
Skip building the triangle — build just the row!
row[0] = 1
row[i] = row[i-1] * (n-i+1) / i
⏱ O(n), 🗂 O(n)
#Day7 #100DaysOfCode #DSA #MathInCode #StriversSheet
![soumxyz05's tweet photo. 🚀 Pascal’s Triangle II shortcut:
Skip building the triangle — build just the row!
row[0] = 1
row[i] = row[i-1] * (n-i+1) / i
⏱ O(n), 🗂 O(n)
#Day7 #100DaysOfCode #DSA #MathInCode #StriversSheet https://t.co/dF3KQ4GJre](https://pbs.twimg.com/media/GyFk2dtWwAA_j0g.jpg)
🚀 Pascal’s Triangle Hack:
Instead of building the whole triangle…
1️⃣ Use nCr = n! / (r! * (n-r)!)
2️⃣ Pick smaller of r & n-r
3️⃣ Calculate iteratively → avoid overflow
⏱ O(r), 🗂 O(1)
#Day6 #100DaysOfCode #DSA #MathInCode #StriversSheet

Just published a breakdown on rendering LaTeX in React — no more math chaos in your UI 🧮✨ If you're building a slick frontend and want equations to look sharp, this blog's your toolkit.
🔗https://t.co/HWi8GB77CN
#ReactJS #LaTeX #FrontendDesign #DevTips #MathInCode
Day 112 of #GFG160
Today's challenge: 🧮 Sum of All Subarrays!
Smartly calculating the total sum using contributions of each element 💡
No brute force – just pure math & optimization magic ✨
@geeksforgeeks
#GFG160 #GeekStreak2025 #ArrayChallenge #Optimization #MathInCode 💻📊

🔸 Day 110 of #GFG160
Today's challenge: Count Coprime Pairs in an Array!
Using number theory magic 🧮 — Möbius Function, Inclusion-Exclusion Principle, and GCD logic to count all coprime pairs efficiently! 💡
@geeksforgeeks
#GFG160 #GeekStreak2025 #NumberTheory #MathInCode 💻🔢

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 193 💻
🔢 Euclid’s Algorithm (GCD using recursion)
✅ Efficiently finds greatest common divisor using GCD(a, b) = GCD(b, a % b)
One of the most powerful & ancient algorithms!
#Java #EuclidsAlgorithm #GCD #MathInCode #200DaysOfCode
🚀 Day 332 of Code 🚀
Solved :
✅ 3443. Maximum Manhattan Distance After K Changes (POTD)
#Day332 #LeetCode #DSA #ManhattanDistance #MathInCode #POTD #Greedy #Algorithm #ProblemSolving #100DaysOfCode

🧮 Day 168 of #200DaysOfCode
Solved LeetCode #2894: Divisible and Non-divisible Sums Difference using Java! 🔍➗
Clean math-based problem — focused on modulus, summation, and clear logic 💡
#Java #LeetCode #MathInCode #ProblemSolving #100DaysOfCode #CodingJourney
🔹 Day 148: Java Learning Journey 🚀
Solved LeetCode #790: Domino and Tromino Tiling 🎯
Applied dynamic programming to solve tiling problems efficiently.
Challenging but rewarding! 💪
#Java #LeetCode #DynamicProgramming #100DaysOfCode #CodingJourney #200DaysOfCode #MathInCode
Last Seen Hashtags on Sotwe
Most Popular Users

Elon Musk 
@elonmusk
240.1M followers

Barack Obama 
@barackobama
119.3M followers

Donald J. Trump 
@realdonaldtrump
111.6M followers

Cristiano Ronaldo 
@cristiano
108.7M followers

Narendra Modi 
@narendramodi
106.9M followers

Rihanna 
@rihanna
97.2M followers

NASA 
@nasa
92.1M followers

Justin Bieber 
@justinbieber
90.5M followers

KATY PERRY 
@katyperry
86.7M followers

Taylor Swift 
@taylorswift13
80.5M followers

Lady Gaga 
@ladygaga
72.1M followers

Kim Kardashian 
@kimkardashian
69.3M followers

YouTube 
@youtube
68.6M followers

Virat Kohli 
@imvkohli
68.4M followers

Bill Gates 
@billgates
63.4M followers

The Ellen Show
@theellenshow
62.5M followers

CNN 
@cnn
61.9M followers

Neymar Jr 
@neymarjr
60.9M followers

X 
@x
60.9M followers

CNN Breaking News 
@cnnbrk
59.9M followers













