moodle-qtype_formulas icon indicating copy to clipboard operation
moodle-qtype_formulas copied to clipboard

Remove duplicate values from an array

Open PhilippImhof opened this issue 2 years ago • 0 comments

Description of proposed feature

We should add a function unique() that will remove duplicate values from an array.

How can the new feature be used?

unique([1,2,3,5,2,4,1]) --> [1,2,3,5,4]

PhilippImhof avatar May 07 '23 06:05 PhilippImhof