You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/homeComponents/cardDetails.js
+23-23Lines changed: 23 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -18,10 +18,10 @@ export function getDetails(){
18
18
},
19
19
{
20
20
id:2,
21
-
title:"Prime Numbers",
22
-
description:"Visualize how Seive is better than brute force",
23
-
route:"/prime",
24
-
img:primes
21
+
title:"Recursion Tree",
22
+
description:"The process in which a function calls itself directly or indirectly is called recursion. Work in progress",
23
+
route:"/graph",
24
+
img:Recursion
25
25
},
26
26
{
27
27
id:3,
@@ -31,49 +31,49 @@ export function getDetails(){
31
31
img:sort
32
32
},
33
33
{
34
-
id:9,
34
+
id:4,
35
35
title:"Recursive Sorting",
36
36
description:"Compare different recursive sorting algorithms",
37
37
route:"/recursivesort",
38
38
img:sort
39
39
},
40
40
{
41
-
id:4,
41
+
id:5,
42
42
title:"N Queen",
43
43
description:"The N queens puzzle is the problem of placing N chess queens on an N*N chessboard so that no two queens threaten each other",
44
44
route:"/nqueen",
45
45
img:queen
46
46
},
47
47
{
48
-
id:5,
48
+
id:6,
49
+
title:"Turing Machine",
50
+
description:"A Turing machine is a mathematical model of computation that defines an abstract machine that manipulates symbols on a strip of tape according to a table of rules",
51
+
route:"/turing",
52
+
img:turing
53
+
},
54
+
{
55
+
id:7,
56
+
title:"Prime Numbers",
57
+
description:"Visualize how Seive is better than brute force",
58
+
route:"/prime",
59
+
img:primes
60
+
},
61
+
{
62
+
id:8,
49
63
title:"Convex Hull",
50
64
description:"The convex hull of a set of points is the smallest convex polygon that contains all the points of it",
51
65
route:"/convexhull",
52
66
img:convex
53
67
},
54
68
{
55
-
id:7,
69
+
id:9,
56
70
title:"Binary Search",
57
71
description:"Binary search is an efficient algorithm for finding an item from a sorted list of item",
58
72
route:"/binarysearch",
59
73
img:binSearch
60
74
},
61
75
{
62
-
id:6,
63
-
title:"Turing Machine",
64
-
description:"A Turing machine is a mathematical model of computation that defines an abstract machine that manipulates symbols on a strip of tape according to a table of rules",
65
-
route:"/turing",
66
-
img:turing
67
-
},
68
-
{
69
-
id:8,
70
-
title:"Recursion",
71
-
description:"Work in progress",
72
-
route:"/graph",
73
-
img:Recursion
74
-
},
75
-
{
76
-
id:9,
76
+
id:10,
77
77
title:"15 Puzzle",
78
78
description:"The 15 puzzle is a sliding puzzle having 15 square tiles numbered 1–15 in a frame that is 4 tiles high and 4 tiles wide, leaving one unoccupied tile position",
0 commit comments