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
// First Approach - Two-pointer method iterating over string s concatenating with res and, if it matches with the next spaces value it adds an space. (126ms - Beats 37.50%)
function addSpaces(s: string, spaces: number[]): string {