recursive_build_sup_lvl_safe_mode

def recursive_build_sup_lvl_safe_mode(current,indice)

Algorithm

The variable indeice correspond to the pow index of the current recursive build. The current argument contain the current Base Tale array as list. Using once again the Horner’s scheme, we can build each sup level without be limited by internal constraints.

Parameters

Type

Description

current

list

The current table to treat

indice

int

The pow indice

Returns

list : A list containing the next level builded Base Table


Source Code

res = []
for i in current:
        res.append(str(indice)+str(i))
return res