# version code 3df3986b06e3+
# Please fill out this stencil and submit using the provided submission script.

from orthog import orthogonalize



## 1: () Basis Function
def basis(vlist):
    '''
    Input:
        - vlist: a list of Vecs
    Output:
        - a list of linearly independent Vecs with equal span to vlist
    '''
    pass



## 2: () Subset Basis
def subset_basis(vlist):
    '''
    Input:
        - vlist: a list of Vecs
    Output:
        - linearly independent subset of vlist with the same span as vlist
    '''
    pass

