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
// Your task is to write function which takes string and list of delimiters as an input and returns list of strings/characters after splitting given string.
// Example:
// multipleSplit('Hi, how are you?', [' ']) => ['Hi,', 'how', 'are', 'you?']