From 197e875610ab5a11f571825957023e74e88aa335 Mon Sep 17 00:00:00 2001 From: Heikki Aitakangas Date: Sat, 2 Apr 2022 04:34:16 +0300 Subject: [PATCH] Set Shortest Path contract difficulty factor --- src/data/codingcontracttypes.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/codingcontracttypes.ts b/src/data/codingcontracttypes.ts index 2c88b87a6..3265302cb 100644 --- a/src/data/codingcontracttypes.ts +++ b/src/data/codingcontracttypes.ts @@ -820,8 +820,8 @@ export const codingContractTypesMetadata: ICodingContractTypeMetadata[] = [ "Answer: ''\n\n", ].join(" "); }, - difficulty: 5, // TODO: higher, but probably not much more? - numTries: 10, // TODO: probably OK? + difficulty: 7, + numTries: 10, gen: (): number[][] => { const height = getRandomInt(6, 12); const width = getRandomInt(6, 12);