Skip to content

Cody2point0/ListUtil

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Just some utilities for operating with lists (hopefully) more efficently. contains actions like combinings lists:

list1 = [1, 2, 3, 4]

list2 = [5, 6, 7, 8]

list3 = combine(list1, list2)

print(list3): [1, 5, 2, 6, 3, 7, 4, 8]

maxtrix functions, and more! see documentation.md for more information