Files
poker_task3/main.py
2025-09-20 00:09:22 +08:00

19 lines
337 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env python3
from poker_task3.task3 import runTask3
def main():
"""task3的主入口点"""
print("=== task3扑克牌TURN阶段EMD距离计算 ===")
distance = runTask3()
if distance is not None:
print(f"EMD距离: {distance}")
return distance
if __name__ == "__main__":
main()