about summary refs log tree commit diff
path: root/scratch/deepmind/part_two/tsconfig.json
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-03-19T12·31+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-03-19T12·31+0000
commit380a6a352c6fe0a5fb4859366ae937129a728f8c (patch)
tree5341c524b33c51647f4e46d53a1384c2f8f928db /scratch/deepmind/part_two/tsconfig.json
parent1d45f146158b0bc678f4204f2c22d481d3ea20a7 (diff)
Solve InterviewCake's graph-coloring problem
Write a function that colors the nodes of a graph such that no two neighbors
share a color.
Diffstat (limited to 'scratch/deepmind/part_two/tsconfig.json')
-rw-r--r--scratch/deepmind/part_two/tsconfig.json7
1 files changed, 7 insertions, 0 deletions
diff --git a/scratch/deepmind/part_two/tsconfig.json b/scratch/deepmind/part_two/tsconfig.json
new file mode 100644
index 0000000000..9b6918ca37
--- /dev/null
+++ b/scratch/deepmind/part_two/tsconfig.json
@@ -0,0 +1,7 @@
+{
+  "compilerOptions": {
+    "downlevelIteration": true,
+    "target": "es5",
+    "lib": ["es6", "dom"]
+  }
+}