"""第 25 课补全练习：检查三份材料是否串卷。修改 solve，保持下方检查不变。"""
import math, io, argparse
import torch
from torch import nn
from torch.nn import functional as F
torch.set_num_threads(2)
torch.manual_seed(26)

def solve(train, val, test):
    raise NotImplementedError("请补全：检查三份材料是否串卷；参考答案见 solution.py")

assert solve({'a'},{'b'},{'c'})
assert not solve({'a'},{'a'},{'c'})
print("本课补全练习通过。")
