-
Notifications
You must be signed in to change notification settings - Fork 6.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
arrayCompact function - remove consecutive identical elements. #7204
Comments
I would be interested in working on this. Test/structure wise, would it be fair to say that |
You can also look at |
Can I work on this? |
@divc99 Sure. It will be very appreciated! |
Can I work on this? |
@jatin33 Yes, you can work on this task. |
Note that GitHub does not allow to assign issues to people outside of the teams. |
Use case
arrayCompact(['a', 'a', 'b', 'b', 'a']) = ['a', 'b', 'a']
#7147
The text was updated successfully, but these errors were encountered: