smv1999 / CompetitiveProgrammingQuestionBank

This repository contains all the popular Competitive Programming and DSA questions with solutions for your Coding Interview Preparation.
https://smv1999.github.io/CompetitiveProgrammingQuestionBank/
MIT License
1.22k stars 350 forks source link

Permutation of a string-Recursion And Backtracking #895

Closed harsh6768-svg closed 3 years ago

harsh6768-svg commented 3 years ago

💥 Proposal

We will prviode a simple string just want to get all the permutations of that particular string. For eg: input: ABC output: ABC ACB BAC BCA CBA CAB

Have you read the Contributing Guidelines on Pull Requests?

Yes

github-actions[bot] commented 3 years ago

Hello @harsh6768-svg,
Thank you for opening an issue. :partying_face:
To get assigned to this particular issue please use /assign
Check this guide before contributing.

harsh6768-svg commented 3 years ago

/assign

github-actions[bot] commented 3 years ago

This issue has been assigned to @harsh6768-svg! It will become unassigned if it isn't closed within 17 days. A maintainer can also add the pinned label to prevent it from being unassigned.

smv1999 commented 3 years ago

The same problem using backtracking has already been implemented here