-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathalgorithm.html
More file actions
142 lines (136 loc) · 6.14 KB
/
algorithm.html
File metadata and controls
142 lines (136 loc) · 6.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!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.0">
<meta name = "title" content = "Developers Guide">
<meta name = "author" content = "rmarasigan" />
<meta name = "description" content = "A web designer and developer from Philippines.">
<meta name = "keywords" content = "barangay, barangay system, barangay web-based system, barangay software, barangay management system, barangay management information, barangay management information system, management, management information, management information system, local government, office management, barangay clearance, barangay id, brgy clearance, barangay permit, indigency, business permit, report, data analysis, information, web-based application, web-based, application, system, software, software developer, developer, front-end developer, back-end developer, front-end, back-end, developer guide, guide, reference, developer reference">
<meta property = "og:type" content = "website">
<meta property = "og:url" content = "https://developersguide.netlify.app/">
<meta property = "og:title" content = "Developers Guide">
<meta property = "og:description" content = "A web designer and developer from Philippines.">
<meta property = "twitter:url" content = "https://developersguide.netlify.app/">
<meta property = "twitter:title" content = "Developers Guide">
<meta property = "twitter:description" content = "A web designer and developer from Philippines.">
<title>
Developers Guide | Algorithms
</title>
<!-- Bootstrap CSS -->
<link href = "https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel = "stylesheet" integrity = "sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin = "anonymous">
<!-- Material Design Icons -->
<link rel = "stylesheet" href = "//cdn.materialdesignicons.com/5.4.55/css/materialdesignicons.min.css">
<link rel = "icon" href = "https://rmarasigan.github.io/assets/img/avatar.ico">
<link rel = "stylesheet" href = "assets/css/main.css?v=1">
</head>
<body>
<main>
<header class = "py-3 mb-3 border-bottom bg-dark shadow">
<div class = "container-fluid d-grid gap-3 align-items-center" style = "grid-template-columns: 1fr 2fr;">
<a href = "index.html" class = "d-flex align-items-center mb-3 mb-md-0 me-md-auto text-white text-decoration-none">
<span class = "fs-4">
#! developers_guide
</span>
</a>
</div>
</header>
<div class = "container-fluid pb-3">
<div class = "container px-4 py-4">
<div class = "row g-4 py-4 row-cols-1">
<div class = "col d-flex align-items-center justify-content-center pb-2">
<div class = "icon-square text-dark flex-shrink-0 me-3 bg-warning">
<h2 class = "mdi mdi-graphql"></h2>
</div>
<div>
<h2>
Algorithms
</h2>
</div>
</div>
</div>
<div class = "container-fluid pb-3">
<!-- Reference -->
<div class = "d-grid gap-3 bg-warning p-4" style = "grid-template-columns: 1fr 2fr; border-top-right-radius: .75rem; border-top-left-radius: .75rem; border-bottom-right-radius: .75rem; border-bottom-left-radius: .75rem;">
<div class = "d-flex align-items-center">
<h2>
Reference
</h2>
</div>
<div>
<ul>
<li>
<a href = "https://visualgo.net/en" target = "_blank">
VisuaAlgo
</a>
</li>
<li>
<a href = "https://coderbyte.com/" target = "_blank">
CoderByte
</a>
</li>
<li>
<a href = "https://www.hackerrank.com/dashboard" target = "_blank">
HackerRank
</a>
</li>
<li>
<a href = "https://www.hackerearth.com/for-developers" target = "_blank">
HackerEarth
</a>
</li>
<li>
<a href = "https://projecteuler.net/" target = "_blank">
Project Euler
</a>
</li>
<li>
<a href = "https://www.codingame.com/start" target = "_blank">
Coding Game
</a>
</li>
<li>
<a href = "https://practice.geeksforgeeks.org/" target = "_blank">
Geeks for Geeks
</a>
</li>
<li>
<a href = "https://github.com/jwasham/code-catalog-python" target = "_blank">
Code Catalog in Python
</a>
</li>
<li>
<a href = "https://github.com/EbookFoundation/free-programming-books" target = "_blank">
Free Programming Books
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</main>
<div class = "cursor-dot-outline"></div>
<div class = "cursor-dot"></div>
<footer class = "footer mt-auto py-3">
<div class = "container text-center">
<span>
© rmarasigan | <span class = "year"><script>document.write(/\d{4}/.exec(Date())[0])</script></span> All Rights Reserved
</span>
<br>
<span class = "mr-1">
Made with
</span>
<a href = "https://getbootstrap.com/" target = "_blank" style = "color: #AB47BC;">
<span class = "mdi mdi-bootstrap"></span>
Bootsrap
</a>
</div>
</footer>
<!-- Bootstrap Bundle with Popper -->
<script src = "https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity = "sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin = "anonymous"></script>
<script src = "assets/js/cursor.js"></script>
</body>
</html>