Explore tweets tagged as #PascalTriangle
@Shami_Kumar1
🚀code_ shami 🚀
1 month
🚀 Day 8 of my #LeetCode DSA Journey (C++) Solved Pascal’s Triangle 🔺 today! Learned how math & logic merge beautifully 💡 ✅ 0ms runtime ⚡ ✅ Boosted my problem-solving mindset 💪 #DSA #Cplusplus #100DaysOfCode #CodingJourney #PascalTriangle
0
0
3
@anacp20
ANA ISABEL ☕️ 🍫
2 months
Do binômio à beleza: o Triângulo 🔺 de Pascal é a matemática mostrando como a ordem gera padrões infinitos. ♾️ 🔗 https://t.co/cwEM0PRO5f🌐 hashtag#PascalTriangle hashtag#Maths hashtag#Dynamics hashtag#ISA👑
0
0
1
@evilzeda
𝕏 Lawliet 𝕏 🇵🇸
11 months
Pertama ngelakuin verifikasi input dengan syarat numRows >= 1, karena jika numRows = 0 maka akan mengeluarkan output empty list. Nextnya inisiasi elemen pertama dari pascaltriangle yaitu [1] (kalau kasusnya != [1] maka tinggal ganti inisiasi elemen awal ini).
1
0
2
@MrValencia24
Libo Valencia 🧮 MathPlay
2 years
4
6
25
@faribanikuoe
nifa
9 days
ضریب‌های دوجمله‌ای از مثلث پاسکال (Pascal’s Triangle) می‌آیند: الگویی که جبر، احتمال و ترکیبیات را به هم وصل می‌کند. ریاضی یعنی دیدن تقارن در دل الگوها. #PascalTriangle #BinomialTheorem #Mathematics
@faribanikuoe
nifa
9 days
دنبالهٔ فیبوناچی (Fibonacci Sequence) جایی است که سادگی به الگوهای شگفت‌انگیز می‌رسد: هر عدد = مجموع دو عدد قبلی. از همین قانون ساده، مارپیچ فیبوناچی و نسبت طلایی ظاهر می‌شوند. #Mathematics #Fibonacci #GoldenRatio
3
0
15
@gsarcone
Gianni A. Sarcone
3 years
One of the most interesting number patterns is "Pascal’s Triangle" with many interesting math properties. Available as prints & posters from my online gallery: https://t.co/0MNronGBkr #pascaltriangle #maths
0
0
5
@Mohd_Saqib_
Mohd Saqib
3 months
🚀 Day 373 of Code 🚀 Solved : ✅ Problem: 118. Pascal’s Triangle #Day373 #LeetCode #DSA #PascalTriangle #DynamicProgramming #ProblemSolving #CodingJourney #100DaysOfCode
3
0
6
@Kashish_x_1
Kashish Chug
1 year
✅Day 25 of #100daysofcode I practised question 118 on #leetcode based on #array that it #pascaltriangle it was #easy #DSA #learning #skills #maths #algorithms #DataAnalytics #c++
0
0
7
@Kushal_Koradia
Kushal Koradia
3 months
✅ Day 75 of #100DaysOfDSA 📍LC 118: Pascal's Triangle • Used List of Lists to simulate triangle • Each row starts/ends with 1 • Inner elements = sum of two above • Time: O(n²), Space: O(n²) — storing full triangle #PascalTriangle #DSA #Java #100DaysOfCode
1
0
5
@seyipumping
Pumpstuffs 🇳🇬 🇺🇸
2 months
Could this be an extension to #ReneDescartes' "mathematical doubt" and #Leibniz's "monadology"🤔. But no doubt GOD has always being in the #MathematicalEquation... Moreover, I've always suspected the #PascalTriangle to hold powerful codes for #Causality😎
0
0
0
@a__payal
Payal A
6 months
Day 45/100 - #DSAChallenge 🚀 Just solved Pascal’s Triangle II (Easy) today. Kept it light, but I’m hopeful — tomorrow’s gonna be better. Small wins still count. #100DaysOfCode #DSA #LeetCode #KeepPushing #PascalTriangle
1
0
37
@Manohar2909
Manohar Chirukuri
4 months
🚀 Day 34 of #100DaysOfCode: Diving Deeper Into Recursion & Backtracking 216. Combination Sum III 118. Pascal's Triangle #100DaysOfCode #JavaWithDSA #RecursionInJava #PascalTriangle #CodingChallenge #TechInPublic #CodeNewbie #SoftwareEngineering #DeveloperCommunity
0
0
2
@Vikrant_136
Vikrant Kumar
3 months
Me: starts 60-day LeetCode challenge Also me: spends an hour making a triangle of numbers look pretty C++: "Bro........." Achievement unlocked: printing numbers in triangle shape. #Day1 #PascalTriangle #WhyAmIDoingThis #LeetCode #Coding #CodingChallenge #programming
3
0
9
@felipemellozx
Felipe Melo
6 months
LeetCode Day 41 118. Pascal's Triangle Build row by row Edges = 1, inner = sum of two above 📈 O(n²) 💾 O(n²) #LeetCode #100DaysOfCode #PascalTriangle
0
0
3
@amansinghberra
Aman Singh
4 months
🚀 Day 33 of #100DaysOfCode Today's Problem: Pascal’s Triangle • Approach: * Initialize triangle, * Set 1 at boundaries, * Fill inner elements: ans[i][j] = ans[i-1][j-1] + ans[i-1][j] • Time Complexity: O(numRows²) #LeetCode #DSA #cpp #PascalTriangle #100DaysChallenge
1
0
15
@debugwitharyan
Aryan Jaiswal
6 months
📅 Day 35 of #GFG160 Today's challenge: Pascal's Triangle! 🔺➕ Generate the first n rows of Pascal's Triangle — where each number is the sum of the two numbers above it. @geeksforgeeks #gfg160 #geekstreak2025 #PascalTriangle #DynamicProgramming #Combinatorics
0
0
1
@45NitinVerma
Nitin Verma
8 months
💡 Solved Pascal’s Triangle Variant 1 - Finding element at (r, c)! 🔹 Approach 1: Factorial-based nCr ✅ O(n) time 🔹 Approach 2: Optimized nCr ✅ O(r) time Great for combinatorics & DP! 🚀 #DSA #LeetCode #Coding #Math #Combinations #PascalTriangle
0
0
2
@45NitinVerma
Nitin Verma
8 months
💡 Solved Pascal’s Triangle Variant 2 – Print the N-th row using 2 approaches: 1️⃣ Naive (C(n, r) formula) - O(n²) time 2️⃣ Optimal (Iterative formula) - O(n) time 🔹 Pascal’s Triangle is a must-know for combinatorics & binomial expansion! #DSA #Coding #LeetCode #PascalTriangle
0
0
2