This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
usaco-guide/content/6_Plat/Eulers_Formula.mdx

37 lines
762 B
Text
Raw Normal View History

2020-06-25 15:52:19 +00:00
---
id: eulers-formula
title: "Euler's Formula"
author: Benjamin Qi
description: "?"
prerequisites:
- "?"
2020-06-26 18:00:32 +00:00
frequency: 1
2020-06-25 15:52:19 +00:00
---
import { Problem } from "../models";
export const metadata = {
problems: {
e1: [
2020-06-28 02:11:09 +00:00
new Problem("DMOJ", "Land of the Rainbow Gold", "apio17p1", "Hard", false, [],""),
2020-06-25 15:52:19 +00:00
],
e2: [
new Problem("Plat", "Valleys", "950", "Hard", false, [], ""),
],
other: [
new Problem("Kattis", "Island Archipelago", "https://utipc20s.kattis.com/problems/utipc20s.islandarchipelago", "Very Hard", false, [],""),
],
}
};
## Example 1
<problems-list problems={metadata.problems.e1} />
## Example 2
<problems-list problems={metadata.problems.e2} />
2020-06-28 02:11:09 +00:00
Extension:
2020-06-25 15:52:19 +00:00
<problems-list problems={metadata.problems.other} />