-
Notifications
You must be signed in to change notification settings - Fork 6
/
hunt_the_code.php
executable file
·79 lines (60 loc) · 3.33 KB
/
hunt_the_code.php
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
<!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">
<meta name="google-signin-client_id" content="307712715810-5gqv439ef8l9hmmod3ggpbdplcc7t7gq.apps.googleusercontent.com">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="Team .EXE is the technical team of Computer Science & Engineering Department for technical fest NIMBUS at NIT Hamirpur.">
<meta name="author" content="Team .EXE">
<link rel="icon" href="images/title.png">
<title>Hunt the code - Team .EXE</title>
<?php
include_once('stylesheets.php');
include_once('dbconnect.php');
?>
</head>
<body>
<?php
include_once('header.php');
include_once('navigation.php');
?>
<center>
<div class="container">
<h1>Hunt the code by Team .EXE</h1>
</div>
</center>
<section id="blog-full-width">
<div class="container">
<?php
include_once('huntcode_embed.php');
?>
<article class="wow fadeInDown" data-wow-delay=".5s" data-wow-duration="500ms">
<div class="blog-post-image">
</div>
<div class="blog-content">
<h2 class="blogpost-title">
<a>About - Hunt the code</a>
</h2>
<p>
Hunt the Code is a online programming competition which is conducted by NIT HAMIRPUR.<br>
This competition is conducted by Team.exe (Departmental Team of Computer Science and Engineering of NIT Hamirpur) for NIMBUS (Technical Festival of NIT Hamirpur).<br>
In this event, you are given an executable file of the pre-written code and the instructions about the input. One has to find the logic behind the executable code and write the program for it.<br>
There are six programming problems in the contest with varying difficulty. The contest is 3 days long, and 2 questions will be added everyday. 2 hints will be posted on Hackerearth - first hint at 5:30pm and second hint at 7:30pm.<br>
Anyone with plagiarism in result will be disqualified from the event.<br>
Anyone with a knack for programming can participate in this contest. There are no restrictions.<br>
Note: This contest is open for all but Prizes will only be given to the students of NIT Hamirpur.<br>
For any queries, email us at: [email protected].<br>
for further information <a href="https://www.hackerearth.com/challenge/college/hunt-the-code/"><button class="btn-lg btn">Visit Here</button></a>
</p>
</div>
</article>
</div>
</div>
</section>
<?php
include_once('footer.php');
?>
</body>
</html>