diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-19T12·31+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-19T12·31+0000 |
commit | 380a6a352c6fe0a5fb4859366ae937129a728f8c (patch) | |
tree | 5341c524b33c51647f4e46d53a1384c2f8f928db /scratch/deepmind/part_two/tsconfig.json | |
parent | 1d45f146158b0bc678f4204f2c22d481d3ea20a7 (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.json | 7 |
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 000000000000..9b6918ca37d8 --- /dev/null +++ b/scratch/deepmind/part_two/tsconfig.json @@ -0,0 +1,7 @@ +{ + "compilerOptions": { + "downlevelIteration": true, + "target": "es5", + "lib": ["es6", "dom"] + } +} |