Skip to content

Commit cf91f9b

Browse files
authored
Update __init__.py
1 parent 1482702 commit cf91f9b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

cyaron/__init__.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
from .io import IO
2-
from .graph import Graph, Edge
3-
from random import randint, randrange, uniform, choice, random
4-
51
"""CYaRon: Yet Another Random Olympic-iNformatics test data generator
62
By Luogu
73
This is a tool package for everyone to make the test data quickly.
84
It has tools for graphs and IO files.
95
"""
106

11-
def ati(array):
12-
"""ati(array) -> list
13-
Convert all the elements in the array and return them in a list.
14-
"""
15-
return [int(i) for i in array]
7+
from .io import IO
8+
from .graph import Graph, Edge
9+
from .str import String
10+
from .sequence import Sequence
11+
from .utils import *
12+
from .consts import *
13+
from .vector import Vector
14+
from random import randint, randrange, uniform, choice, random
15+

0 commit comments

Comments
 (0)