Skip to content

Commit c49bcf1

Browse files
committed
add more timecodes and references
1 parent 779b007 commit c49bcf1

File tree

1 file changed

+40
-1
lines changed
  • content/videos/challenges/182-apollonian-gasket

1 file changed

+40
-1
lines changed

β€Žcontent/videos/challenges/182-apollonian-gasket/index.json

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,16 @@
2424
{ "time": "1:40", "title": "References" },
2525
{ "time": "3:22", "title": "Describe the Apollonian problem" },
2626
{ "time": "5:51", "title": "Curvature" },
27-
{ "time": "10:08", "title": "Start coding!" }
27+
{ "time": "10:08", "title": "Start coding!" },
28+
{ "time": "11:53", "title": "Write a function to find the fourth curvature" },
29+
{ "time": "15:31", "title": "Complex numbers" },
30+
{ "time": "21:11", "title": "Create a complex number class" },
31+
{ "time": "22:52", "title": "Square root of -1" },
32+
{ "time": "25:32", "title": "Square root of a complex number" },
33+
{ "time": "27:57", "title": "Implement complex Descartes theorem" },
34+
{ "time": "33:50", "title": "Make the circles in the complexDescartes function" },
35+
{ "time": "36:26", "title": "Use an array to add recursion" },
36+
{ "time": "41:04", "title": "Validate the circles" }
2837
],
2938
"codeExamples": [
3039
{
@@ -40,6 +49,12 @@
4049
{
4150
"title": "References",
4251
"links": [
52+
{
53+
"icon": "πŸ”—",
54+
"title": "Apollonian Gasket",
55+
"url": "https://en.wikipedia.org/wiki/Apollonian_gasket",
56+
"description": "Wikipedia page about the Apollonian Gasket."
57+
},
4358
{
4459
"icon": "πŸ”—",
4560
"title": "A Tisket, a Tasket, an Apollonian Gasket",
@@ -75,6 +90,30 @@
7590
"title": "Problem of Apollonius",
7691
"url": "https://en.wikipedia.org/wiki/Problem_of_Apollonius",
7792
"description": "Wikipedia page describing the Problem of Apollonius."
93+
},
94+
{
95+
"icon": "πŸ”—",
96+
"title": "Four Proofs of a Generalization of the Descartes Circle Theorem",
97+
"url": "https://www.jstor.org/stable/2316373",
98+
"description": "Proof of Descartes Circle Theorem"
99+
},
100+
{
101+
"icon": "πŸ”—",
102+
"title": "Beyond the Descartes Circle Theorem",
103+
"url": "https://arxiv.org/pdf/math/0101066.pdf",
104+
"description": "Paper by Jeffrey C. Lagarias, Colin L. Mallows, and Allan R. Wilks about the complex Descartes Theorem."
105+
},
106+
{
107+
"icon": "πŸ”—",
108+
"title": "Descartes' theorem",
109+
"url": "https://en.wikipedia.org/wiki/Descartes%27_theorem",
110+
"description": "Wikipedia page about the Descartes theorem."
111+
},
112+
{
113+
"icon": "πŸ”—",
114+
"title": "Complex.js",
115+
"url": "https://www.npmjs.com/package/complex.js",
116+
"description": "Javascript library implementing math operations for complex numbers."
78117
}
79118
]
80119
},

0 commit comments

Comments
Β (0)