
Loading ...
Comparison between 2 different list of values to find the missing and additional parts can be complex task if the algorithm. Let us consider 2 different arrays
Array1 = {"a", "b", "c", "b", "f"}
Array2 = {a", "e", "d", "g"}
Now from visual inspection we can notice that
Array1 is missing “e”, “d” and “g”
Array1 has additional element “c” [...]
Register or Login to read the full article...
Tags used -
array, arrays, between, compare, Comparison, difference, Find, lists, missing, two, values

Loading ...
Arrays containing a list of values can be evaluated for their sort order, whether they contain values in ascending order, descending order or not sorted. To check the same we can use the function given below
‘Function: GetArraySortOrder
‘Author: Tarun Lalwani
‘Website: http://KnowledgeInbox.com
‘Description: Finds the sorting order of a given array
‘Parameters:
‘@arrLOV: The array of values
‘Return value:
‘ 1 - [...]
Register or Login to read the full article...
Tags used -
array, ascending, descending, order, sort, sorting