Parcourir la source

strings lab updated

William Simkins il y a 6 ans
Parent
révision
17178665ad
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2
    1
      StringUtilities.java

+ 2
- 1
StringUtilities.java Voir le fichier

@@ -92,7 +92,8 @@ public class StringUtilities {
92 92
      * @return an identical string with characters in reverse order.
93 93
      */
94 94
     public String reverse(String stringToReverse){
95
-        return null;
95
+        String reverse = new StringBuffer(stringToReverse).reverse().toString();
96
+        return reverse;
96 97
     }
97 98
 
98 99
     /**