28 lines
884 B
HTML
28 lines
884 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/highlight.min.js"></script>
|
|
<link rel="stylesheet" href="gruvbox-light.css" />
|
|
<link rel="stylesheet" href="../index.css" />
|
|
<title>Dynamic Programming</title>
|
|
</head>
|
|
<body>
|
|
<h1>Dynamic Programming</h1>
|
|
<p>Trapping Raintwaters Leetcode Problem Description</p>
|
|
<pre><code class="trapping-rainwater"></code></pre>
|
|
<h2>Problem Statement</h2>
|
|
<p>hi</p>
|
|
<script>
|
|
const code = document.querySelector(".trapping-rainwater");
|
|
code.textContent = `
|
|
int trap(vector<int>& height) {
|
|
some code
|
|
}
|
|
`;
|
|
hljs.highlightAll();
|
|
</script>
|
|
</body>
|
|
</html>
|