Questions tagged [duplicate-detection]
18 questions
0
votes
4 answers
Find and show duplicated value
Any idea how to get this:
var MyArr = [0,1,2,3,"something",44,661,3,1,"something"]
var Results = [1,3,"something"]
I just want to find duplicated values in my array.

maniootek
- 409
- 1
- 8
- 15
0
votes
1 answer
Avoid duplicate swipe event handling with external library animation
I have a drag event handler which starts (1) an animation, and (2) adjust a counter. When I drag the target, multiple handlers will be triggered several times, and the counter is wrong. The touch event is based on…

mrmoment
- 727
- 2
- 10
- 34
-3
votes
3 answers
remove duplicate sentences between specified words from string
This is my example of some string:
message: this is some message 2. message: this is some message 3. message: this is message which i want to see only in results
according to this example I would like to get result:
this is message which i want…

maniootek
- 409
- 1
- 8
- 15