Organization: Mozilla
Project: Inline browser compatibility warnings for CSS properties in DevTools
Mentors:
- Micah Tigley - Phabricator, Github, Twitter
- Daisuke Akatsuka - Phabricator, Github, Twitter
Organization: Mozilla
Project: Inline browser compatibility warnings for CSS properties in DevTools
Mentors:
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): |
Prateek Nayak
Email: [email protected]