
	combine(vector: Array, n: Integer): Array
	
		Do a mathematical combination, all the groups with a specified amount of elements possible to be grouped without repeated elements.
		The function returns an bidimensional array, where line = combination and column = element.
		
			vector array which the elements will be combined
			n amount of elements in each group
		
	
