style(problems): clean up whitespace in reverse-string solution

This commit is contained in:
Prad Nukala
2026-08-19 13:05:52 -04:00
parent 6f4686d7e9
commit 6af743173d
@@ -37,7 +37,6 @@
* @return {void} Do not return anything, modify s in-place instead. * @return {void} Do not return anything, modify s in-place instead.
*/ */
var reverseString = function(s) { var reverseString = function(s) {
let i = 0; let i = 0;
let j = s.length - 1; let j = s.length - 1;