We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11f5ebf commit 8771730Copy full SHA for 8771730
data_structures/non_linear/graphs/graph.dart
@@ -2,9 +2,9 @@ import 'package:test/test.dart';
2
3
import '../../linear/queue/queue.dart';
4
5
-/// An undirected GRAPH using the adjacency list representation.
+/// An Undirected Graph using the adjacency list representation.
6
class Graph<T> {
7
- /// Creates an undirected GRAPH using the adjacency list representation.
+ /// Creates an Undirected Graph using the adjacency list representation.
8
Graph();
9
10
final Map<T, List<T>> _adjacencyList = {};
0 commit comments