Explore tweets tagged as #PascalTriangle
0
28
35
🚀 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
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
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
Sunday #MathPlay🧮 with my daughters👨👧👧 - #PascalTriangle Dice🎲 + #Fibonacci @EAIeducation Manipulatives📊 #CodeBreaker🦾 #ITeachMath #MTBoS #MathIsFun #ElemMathChat #MathRocks #STEM #MathWorkshop #CountingCollections #NumberTalks
4
6
25
ضریبهای دوجملهای از مثلث پاسکال (Pascal’s Triangle) میآیند: الگویی که جبر، احتمال و ترکیبیات را به هم وصل میکند. ریاضی یعنی دیدن تقارن در دل الگوها. #PascalTriangle
#BinomialTheorem
#Mathematics
دنبالهٔ فیبوناچی (Fibonacci Sequence) جایی است که سادگی به الگوهای شگفتانگیز میرسد: هر عدد = مجموع دو عدد قبلی. از همین قانون ساده، مارپیچ فیبوناچی و نسبت طلایی ظاهر میشوند. #Mathematics
#Fibonacci
#GoldenRatio
3
0
15
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
🚀 Day 373 of Code 🚀 Solved : ✅ Problem: 118. Pascal’s Triangle #Day373 #LeetCode #DSA #PascalTriangle #DynamicProgramming #ProblemSolving #CodingJourney #100DaysOfCode
3
0
6
✅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
✅ 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
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
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
🚀 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
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
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
🚀 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
📅 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
💡 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
💡 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