You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🔥 Dart 🔥 || 4 solutions || line by line explanation
Solution - 1
classSolution {
// Runtime: 762 ms, faster than 10.00% of Dart online submissions for Reverse Words in a String III.// Memory Usage: 174.5 MB, less than 10.00% of Dart online submissions for Reverse Words in a String III.StringreverseWords(String s) {
if (s.length ==1) return s;
String reversed ="";
String current_word ="";
int num_spaces =0;
for (int i =0; i < s.length; ++i) {
String c = s[i];
if (c ==' ') {
if (!reversed.isEmpty) {
reversed = reversed +' '+ current_word;
} else {
reversed = current_word;
}
current_word ="";
num_spaces++;
} else {
current_word = c + current_word;
}
}
// if its a string with multiple words vs a single wordif (num_spaces !=0) {
reversed +=' '+ current_word;
} else {
reversed = current_word;
}
return reversed;
}
}
Solution - 2
classSolution {
// O(n)// Runtime: 399 ms, faster than 100.00% of Dart online submissions for Reverse Words in a String III.// Memory Usage: 155.1 MB, less than 10.00% of Dart online submissions for Reverse Words in a String III.StringreverseWords(String s) {
String res ='';
String word ='';
for (var c in s.split('')) {
if (c ==' ') {
res += word + c;
word ='';
} else {
word = c + word;
}
}
return res + word;
}
}
Solution - 3
classSolution {
// O(n)// Runtime: 355 ms, faster than 100.00% of Dart online submissions for Reverse Words in a String III.// Memory Usage: 166.9 MB, less than 10.00% of Dart online submissions for Reverse Words in a String III.StringreverseWords(String s) {
return s
.toString()
.split(' ')
.map((e) => e.split('').reversed.join(''))
.join(' ');
}
}
Solution - 4 Two Pointer
classSolution {
// Runtime: 431 ms, faster than 80.00% of Dart online submissions for Reverse Words in a String III.// Memory Usage: 146.7 MB, less than 100.00% of Dart online submissions for Reverse Words in a String III.StringreverseWords(String s) {
int len = s
.length; // saving the length as constant so as to avoid calling s.length() again and again.if (len ==1) // no need to iterate if string is of length 1return s;
int firstIndex, lastIndex;
List<String> ch = s.split(
''); // converting the string into it's corresponding character array// var ch = s.codeUnits;var temp;
for (int index =0; index < len; index++) {
firstIndex = index; // store the first index of wordwhile (++index < len &&
ch[index] !=' '); // iterate until space is found i.e. to get the last index of the word
lastIndex = index -1; // store the last index of the word// reverse characters of the wordwhile (firstIndex < lastIndex) {
temp = ch[firstIndex];
ch[firstIndex++] = ch[lastIndex];
ch[lastIndex--] = temp;
}
}
return ch.join(' '); // convert the character into string and return it
}
}
Bonus Solution - Golang
funcreverseWords(sstring) string {
// split by spacew:=strings.Split(s, " ")
// iterate each wordfork, v:=rangew {
// convert to bytes arrayb:= []byte(v)
// length of current wordn:=len(v)
// for each word, we iterate n / 2 timesfori:=0; i<n/2; i++ {
// swap the charactersb[i], b[n-1-i] =b[n-1-i], b[i]
// w[k] here is the reversed version of vw[k] =string(b)
}
}
// build the final stringreturnstrings.Join(w, " ")
}