-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (72 loc) · 3.48 KB
/
index.html
File metadata and controls
83 lines (72 loc) · 3.48 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
<!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" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="style.css">
<title>Coding Challenges
</title>
</head>
<body id="body">
<div class="row d-flex justify-content-around">
<h1 class="text-center m-5 display-4 fw-bold" id="baslik">
Coding Challenges
</h1>
<div class="col-3 card m-2 border border-5 border-dark" style="width: 18rem">
<img src="./images/bracket.png" class="card-img-top" alt="..." />
<div class="card-body">
<h5 class="card-title">Bracket Validator</h5>
<p class="card-text">
Write an efficient function that tells us whether or not an input string's openers and closers are properly
nested.
</p>
<a href="https://github.com/SkyCooper/CodingChallenges/blob/main/bracketValidator/bracketValidator.js"
class="btn btn-primary w-100" target="_blank">Bracket Validator</a>
</div>
</div>
<div class="col-3 card m-2 border border-5 border-dark" style="width: 18rem">
<img src="./images/wovels.png" class="card-img-top" alt="..." />
<div class="card-body">
<h5 class="card-title">Count Vowels</h5>
<p class="card-text">
Function that'll return an integer of the number of vowels found in a string.
</p>
<a href="https://skycooper.github.io/CodingChallenges/CountVowels/countVowels.html"
class="btn btn-primary w-100" target="_blank">Count Vowels</a>
</div>
</div>
<div class="col-3 card m-2 border border-5 border-dark" style="width: 18rem">
<img src="./images/diamond.png" class="card-img-top" alt="..." />
<div class="card-body">
<h5 class="card-title">Draw Diamond</h5>
<p class="card-text">
The purpose of this coding challenge is to draw an empty diamond figure (only the outline) into textarea
field, using star character (*).
</p>
<a href="https://skycooper.github.io/CodingChallenges/drawDiomand/diamond.html"
class="btn btn-primary w-100" target="_blank">Draw Diamond</a>
</div>
</div>
<div class="col-3 card m-2 border border-5 border-dark" style="width: 18rem">
<img src="./images/sliding.png" class="card-img-top" alt="..." />
<div class="card-body">
<h5 class="card-title">Sliding Window Maximum</h5>
<p class="card-text">
This is an interview question asked by Google
Given an array of integers and a number k, where 1 <= k <=length of the array, compute the maximum values of
each subarray of length k. </p>
<a href="https://github.com/SkyCooper/CodingChallenges/blob/main/slidingWindowMaximum/slidingWindowMax.js"
class="btn btn-primary w-100" target="_blank">Sliding Window
Maximum</a>
</div>
</div>
</div>
</body>
</html>