Prateek Nayak
Email: [email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
- Student: K Prateek Nayak
- Original Proposal: Proposal
- Original Roadmap: Road Map
- Forum : Forum Thread
- Repository : https://github.com/Kriyszig/magpie
- DUB : magpie
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
class Graph: | |
def __init__(self, n): | |
self.n = n | |
self.graph = [[0 for j in range(n)] for i in range(n)] | |
def insertEdge(self, u, v, w): | |
self.graph[u - 1][v - 1] = w | |
if(w > 50): |
Organization: Mozilla
Project: Inline browser compatibility warnings for CSS properties in DevTools
Mentors:
- Micah Tigley - Phabricator, Github, Twitter
- Daisuke Akatsuka - Phabricator, Github, Twitter