Jump to content

zoombie

New Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by zoombie

  1. https://www.sanfoundry.com/java-program-permute-all-letters-input-string/ I don't know how to do it with this
  2. str = [5,3,7,1]; this string should be input by user and generate only when user click on generate button to show result
  3. Dear please kindly help me 🙏 I need it for lottery, allow user to auto random their lucky number please help me dear
  4. Thank you so much for your reply, can you help me with code, i don't know how to do it, please kindly help me with example code please dear thank with best regard
  5. Hi all dear can anyone help me how to find all permutation of a String by allow user input text or number and generate when user click on button, user need to input text on number in input box and click generate button to show result of all permutation of a String below is code i found from https://www.journaldev.com/526/permutation-of-string-in-java but it's not allow user input text, please help me in php function thank with best regard <!DOCTYPE html> <html> <body> <?php function generatePermutation($string,$start,$end){ if($start == $end-1){ echo "$string - "; } else{ for($i = $start; $i < $end; $i++){ $temp = $string[$start]; $string[$start] = $string[$i]; $string[$i] = $temp; generatePermutation($string,$start+1,$end); $temp = $string[$start]; $string[$start] = $string[$i]; $string[$i] = $temp; } } } $str = "ABC"; $n = strlen($str); echo "All the permutations of the string are: "; generatePermutation($str,0,$n); ?> </body> </html>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.