mirror of
https://github.com/Brandon-Rozek/matmod.git
synced 2025-10-08 01:11:13 +00:00
Some optimizations
This commit is contained in:
parent
9f985740e0
commit
20ccacc166
5 changed files with 132 additions and 57 deletions
4
common.py
Normal file
4
common.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
from typing import Set
|
||||
|
||||
def set_to_str(x: Set) -> str:
|
||||
return "{" + ", ".join((str(xi) for xi in x)) + "}"
|
Loading…
Add table
Add a link
Reference in a new issue