From 380a6a352c6fe0a5fb4859366ae937129a728f8c Mon Sep 17 00:00:00 2001 From: William Carroll Date: Thu, 19 Mar 2020 12:31:24 +0000 Subject: Solve InterviewCake's graph-coloring problem Write a function that colors the nodes of a graph such that no two neighbors share a color. --- scratch/deepmind/part_two/tsconfig.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 scratch/deepmind/part_two/tsconfig.json (limited to 'scratch/deepmind/part_two/tsconfig.json') 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"] + } +} -- cgit 1.4.1