feat: solution for 'Повторный экзамен #2: Граф с рефлексией на код'

This commit is contained in:
2026-07-01 11:22:21 +03:00
parent 7832ec4f07
commit 9412dbf851
7 changed files with 240 additions and 101 deletions
+10 -5
View File
@@ -1,15 +1,20 @@
{
"name": "graph-reflection",
"name": "graph-reflexivity",
"version": "1.0.0",
"description": "Graph implementation with reflection using adjacency list",
"description": "A simple JavaScript implementation of a graph with reflexivity (selfloops on every node).",
"main": "src/index.js",
"scripts": {
"test": "jest"
},
"keywords": [],
"author": "",
"keywords": [
"graph",
"reflexivity",
"self-loop",
"javascript"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"jest": "^29.6.1"
"jest": "^29.7.0"
}
}