Pranav Verma
@pranav89624
Followers
109
Following
326
Media
166
Statuses
205
β’ Tea fueled Developer. π β’ B. Tech β26 β’ GitHub: https://t.co/JUQIxMFlRW
India
Joined March 2025
Done π Mute him everywhere ; ) GitHub : https://t.co/EypUbGsUrL
Someone should make a Chrome extension that replaces the audio in Dhruv Ratheeβs videos with a generator sound whenever one starts playing.
0
0
6
Finally!!! No more sad generic gradients π€©. Vibe-coded this landing page with Gemini 3.0 Pro in under 30 minutes. Live link: https://t.co/E7QPPkc2pj Repo: https://t.co/GC8RAYVMZc
#Gemini #VibeCoding #Frontend #FrontendDev
0
0
5
Completed GFG 160 Challenge !!! π Day 160: Solved the Unique Number II Problem! Just mastered bitwise manipulation to find two unique numbers in an array where all others appear twice! π’π β±οΈ O(n) time | O(1) space #gfg160 #geekstreak2025 @geeksforgeeks #codingproblems #js
0
0
8
π Day 159: Solved the Unique Number Problem! Just leveraged XOR magic to find the unique number in an array where all others appear twice! π’β¨ β±οΈ O(n) time | O(1) space #geeksforgeeks #gfg160 #geekstreak2025 @geeksforgeeks
0
0
5
π Day 158: Solved the Missing Number in Array Problem! Just cracked a classic math-based array problem to find the missing number in O(n) time! π’π β±οΈ O(n) time | O(1) space #gfg160 #geekstreak2025 @geeksforgeeks
1
0
7
π Day 157: Solved the Find Only Repetitive Element Problem! Just cracked a duplicate detection challenge using mathematical insight! π’π β±οΈ O(n) time | O(1) space #gfg160 #geekstreak2025 @geeksforgeeks #Algorithms #Math #Array #Coding #javascript #geeksforgeeks #consistency
0
0
8
π Day 156: Solved the Maximum XOR of Two Numbers Problem! Just cracked a bitwise challenge using a binary trie to find the maximum XOR pair in an array! β±οΈ O(n log max_value) time | O(n log max_value) space #gfg160 #geekstreak2025 @geeksforgeeks #Algorithms #BitManipulation
0
0
2
π Day 155: Implemented a Trie Data Structure! Just built a Trie (Prefix Tree) to efficiently handle word insertion, search, and prefix checks! π³π β±οΈ O(L) per operation (L = word length) #gfg160 #geekstreak2025 @geeksforgeeks #Algorithms #DataStructures #Trie #javascript
1
0
5
π Day 154: Solved the Minimum Weight Cycle Problem! Just conquered a graph cycle challenge using the Floyd Warshall algorithm to find the lightest cycle! π β±οΈ O(VΒ³) time | O(VΒ²) space #gfg160 #geekstreak2025 @geeksforgeeks #Algorithms #GraphTheory #FloydWarshall #javascript
0
0
3
π Day 153: Solved the Floyd Warshall Algorithm Problem! Just mastered the Floyd-Warshall algorithm to compute all-pairs shortest paths in a graph! πβ‘ β±οΈ O(nΒ³) time | O(1) space #gfg160 #geekstreak2025 @geeksforgeeks #Algorithms #FloydWarshall #DynamicProgramming #JavaScript
0
0
3
π Day 152: Solved the Bellman-Ford Algorithm Problem! Just mastered the Bellman-Ford algorithm to handle shortest paths with negative weights and detect negative cycles! β±οΈ O(V*E) time | O(V) space #gfg160 #geekstreak2025 @geeksforgeeks #Algorithms #BellmanFord #ShortestPath
0
0
4
π Day 151: Solved the Alien Dictionary Problem! Just cracked a hard graph problem to determine the order of letters in an alien language using topological sort! π½π€ β±οΈ O(n*m) time | O(n*m) space #gfg160 #geekstreak2025 @geeksforgeeks #Algorithms #TopologicalSort #GraphTheory
0
0
4
πDay 150: Solved the Clone an Undirected Graph Problem! Just aced graph cloning using DFS to create a deep copy of an undirected graph! β±οΈO(n + m) time #gfg160 #geekstreak2025 @geeksforgeeks #Coding #Algorithms #DFS #GraphCloning #javascript #DSA #gfg160daychallenge
1
0
8
π Day 149: Solved the Flood Fill Algorithm Problem! Just implemented the classic flood fill algorithm using DFS to recolor connected regions in an image! π β±οΈ O(n*m) time | O(n*m) space (recursion stack) #gfg160 #geekstreak2025 @geeksforgeeks #Algorithms #DFS #FloodFill #js
0
0
3
π Day 148: Solved the Dijkstra Algorithm Problem! Just mastered Dijkstra's algorithm to find shortest paths in weighted graphs! πΊοΈβ‘ β±οΈ O((V + E) log V) time | O(V) space #gfg160 #geekstreak2025 @geeksforgeeks #Algorithms #Dijkstra #ShortestPath #javascript #DSA #coding #JS
2
0
9
π Day 147: Solved the Minimum Cost to Connect All Houses Problem! Just optimized city planning using Prim's algorithm for Minimum Spanning Tree (MST)! ποΈπ β±οΈ O(nΒ² log n) time | O(nΒ²) space #gfg160 #geekstreak2025 @geeksforgeeks #Algorithms #MST #PrimsAlgorithm #JavaScript
4
0
14
π Day 146: Solved the Articulation Points Problem! Just conquered Tarjan's algorithm to find critical vertices in undirected graphs! ππ β±οΈ O(V + E) time | O(V) space #gfg160 #geekstreak2025 @geeksforgeeks #geeksforgeeks #Coding #Algorithms #GraphTheory #Tarjan #javascript
1
0
6
π Day 145: Solved the Bridge Edge in a Graph Problem! Just tackled bridge detection in undirected graphs by checking alternative paths! ππ β±οΈ O(V + E) time | O(V + E) space #gfg160 #geekstreak2025 @geeksforgeeks #Coding #geeksforgeeks #Algorithms #GraphTheory #Connectivity
0
0
3
π Day 144: Solved the Directed Graph Cycle Problem! Just cracked cycle detection in directed graphs using DFS with recursion stack tracking! ππ β±οΈ O(V + E) time | O(V) space #gfg160 #geekstreak2025 @geeksforgeeks #Algorithms #DFS #CycleDetection #geeksforgeeks #JavaScript
1
0
7
π Day 143: Solved the Topological Sort Problem! Just mastered Kahn's Algorithm to perform topological sorting on a Directed Acyclic Graph (DAG)! ππ β±οΈ O(V + E) time | O(V) space #gfg160 #geekstreak2025 @geeksforgeeks #Algorithms #TopologicalSort #CodingChallenge #javascript
2
0
9