21 lines
384 B
Text
21 lines
384 B
Text
---
|
|
id: tries
|
|
title: "Tries"
|
|
author: Benjamin Qi
|
|
description: ?
|
|
---
|
|
|
|
import { Problem } from "../models";
|
|
|
|
export const metadata = {
|
|
problems: {
|
|
sample: [
|
|
new Problem("YS", "Set XOR-Min", "set_xor_min", "Normal", false, [], ""),
|
|
],
|
|
}
|
|
};
|
|
|
|
<problems-list problems={metadata.problems.sample} />
|
|
|
|
- CPH 26.2
|
|
- [Algorithm Gym](http://codeforces.com/blog/entry/15729)
|