From da0ee876db4c5ec094e4baf9a7939f186d2d5781 Mon Sep 17 00:00:00 2001 From: ABHINESH KUMAR JHA <142514166+AbhineshJha@users.noreply.github.com> Date: Sat, 7 Oct 2023 23:59:12 +0530 Subject: [PATCH] Fix a typo (#1453) --- Backtracking/GeneratePermutations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Backtracking/GeneratePermutations.js b/Backtracking/GeneratePermutations.js index 288eeb049..54fa6bb51 100644 --- a/Backtracking/GeneratePermutations.js +++ b/Backtracking/GeneratePermutations.js @@ -1,5 +1,5 @@ /* - * Problem Statement: Generate all distinct permutations of a an array (all permutations should be in sorted order); + * Problem Statement: Generate all distinct permutations of an array (all permutations should be in sorted order); * * What is permutations? * - Permutation means possible arrangements in a set (here it is an array);