<?php function AlphabetSoup($str) { $arr = str_split($str, 1); sort($arr); $imp = implode('', $arr); return $imp; } echo AlphabetSoup('hfgdjsnidij');
You have javascript disabled. You will not be able to edit any code.