From 1938961b987ff54989fef53c14d61663c2ef15bd Mon Sep 17 00:00:00 2001 From: Sean Prashad Date: Tue, 20 Oct 2020 23:41:29 -0400 Subject: [PATCH] Update `Letter Case Permutation` from Easy to Medium difficulty Fixes #52 --- src/data/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/index.js b/src/data/index.js index 7ae56e3f..ffc4c364 100644 --- a/src/data/index.js +++ b/src/data/index.js @@ -180,7 +180,7 @@ const questions = [ name: 'Letter Case Permutation', url: 'https://leetcode.com/problems/letter-case-permutation/', pattern: ['Backtracking'], - difficulty: 'Easy', + difficulty: 'Medium', premium: false, companies: ['Amazon'], },