Twise Random

A site about computer science .
Skip to content
  • apple
  • android
  • c
  • cpp
  • data structure and algorithms
  • macos
  • python
  • tutorials

Category: recursion

Permutate a string letters recursively in python

Posted on August 15, 2019September 26, 2020 by mohamad wael

Let us say we have a string and we want to permutate through its letter . So for example

  • if the string is empty it will return an empty list
  • if it contains only one characters it must return a
… Read More
recursion