forked from rmkcodingclub/rmkcodingclub.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
archive.html
142 lines (134 loc) · 6.46 KB
/
archive.html
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 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>RMK Coding Club</title>
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900" rel="stylesheet" />
<link href="default.css" rel="stylesheet" type="text/css" media="all" />
<link href="fonts.css" rel="stylesheet" type="text/css" media="all" />
<!--[if IE 6]><link href="default_ie6.css" rel="stylesheet" type="text/css" /><![endif]-->
<style>
#menu li:not(:nth-child(2)) a:hover {
color: #2980b9;
}
</style>
</head>
<body>
<div id="page" class="container">
<div id="header">
<div id="logo">
<h1><a href="index.html">RMK Coding Club</a></h1>
</div>
<div id="menu">
<ul>
<li ><a href="index.html" accesskey="1" title="">Home</a></li>
<li class="current_page_item"><a href="archive.html" accesskey="2" title="">Problems</a></li>
<li><a href="presentations.html" accesskey="3" title="">Presentations</a></li>
<li><a href="https://github.com/rmkcodingclub/AmazonProblems/" accesskey="4" title="">Amazon Problems</a></li>
<!--li><a href="contributors.html" accesskey="4" title="">Contributors</a></li-->
</ul>
</div>
</div>
<div id="main">
<div>
<ul class="style1">
<!--li class="first">
<p class="date"><a href="#">Sep<b>24</b></a></p>
<h3>Think binary!</h3>
<p><a href="#">
Print the binary representation of the value stored in a character bit by bit.
Each of the 8 bits should be printed in a new line. For example, if c is a character
that has been assigned 10, then the output should be 1010(each bit in one
new line).<br>
<credit>Solved by
Ravali K, II year.</credit></a>
</p>
</li-->
<li class>
<p class="date"><a href="#">Sep<b>16</b></a></p>
<h3>Decode the message - A problem from Codechef and Infosys Aspirations</h3>
<p><a href="https://github.com/csecoders/september2014Solns/blob/master/decoder.cpp">
Given a string that contains a sequence of digits, find the hidden message.
The cipher is based on the mobile keys. For example. a is coded as 2(since the key is to be pressed
once for typing a), f is coded as 333, etc .<br><credit>Solved by
Sivasubramanyam A, III year.</credit></a>
</p>
</li>
<li class>
<p class="date"><a href="#">Sep<b>10</b></a></p>
<h3>Abbreviations generator</h3>
<p><a href="https://github.com/csecoders/september2014Solns/blob/master/abbreviationsGenerator.c">Given a string that contains words separated by spaces, create an abbreviation. Example
for an input of "Chennai City Traffic Police", the output should be "CCTP".<br>
<credit>Solved by
Lokeshwaran. K, II year.</credit></a>
</p>
</li>
<li class>
<p class="date"><a href="#">Sep<b>10</b></a></p>
<h3>Printing 0,01,010,0101..n pattern</h3>
<p><a href="https://docs.google.com/presentation/d/1WP4D8ECbvmYxgaOY4miZNgaF2GrvjIblHNQMYg1Y19I/edit?usp=sharing">Get an input n from
the user and print the pattern.<br><credit>Solved by
Lokeshwaran. K, II year.</credit></a></p>
</li>
<li class>
<p class="date"><a href="#">Aug<b>27</b></a></p>
<h3>Check for palindrome formation</h3>
<p><a href="https://github.com/csecoders/september2014Solns/blob/master/problem1.c">Given a string of alphabets, determine whether a palindrome can be formed by rearranging the letters of the string.
For example, the string ‘abaab’ can be rearranged as ‘ababa’ to form a
palindrome whereas the string ‘acccaa’ cannot be
rearranged to form a palindome.<br><credit>Solved by
Sivasubramanyam A, III year.</credit></a></p>
</li>
<li>
<p class="date"><a href="#">Aug<b>11</b></a></p>
<h3>Super ASCII</h3>
<p><a href="https://github.com/csecoders/september2014Solns/blob/master/superAscii.cpp">Consider alphabets with ASCII values from 1 to 26.
A word is said to be super ASCII if its characters occur the same number of times
as their ASCII code. eg. ABB is a super ASCII word.(ASCII of A = 1, B = 2)<br><credit>Solved by
Sivasubramanyam A, III year.</credit></a></p>
</li>
<li>
<p class="date"><a href="#">Aug<b>11</b></a></p>
<h3>Length of the given string without using string functions</h3>
<p><a href="https://github.com/csecoders/september2014Solns/blob/master/problem2.c"> Find and display the length of the given string(take "Hello!" for example). The code should satisfy the following criteria:
No string functions. The code should be inside the main(). No functions are allowed. The program(inside the main() )
should be of only one line and contain only one semicolon.<br><credit>Solved by
Sivasubramanyam A, III year.</credit></a></p>
</li>
<li>
<p class="date"><a href="#">Aug<b>11</b></a></p>
<h3>Magic printing</h3>
<p><a href="https://github.com/csecoders/september2014Solns/blob/master/semicolon.cpp">Write a program that prints
";" without using ";" in your program at all.<br><credit>Solved by
Lokeshwaran. K, II year.</credit></a>
</p>
</li>
<li>
<p class="date"><a href="#">Aug<b>11</b></a></p>
<h3>Even or Odd check</h3>
<p><a href="https://github.com/csecoders/september2014Solns/blob/master/evenOddCheck.cpp">Write a program that
checks if the given number is odd or even without using any
conditional operator or if..else.<br><credit>Solved by
Sivasubramanyam A, III year.</credit></a></p>
</li>
<li>
<p class="date"><a href="#">Aug<b>11</b></a></p>
<h3>Day of the week</h3>
<p><a href = "https://github.com/csecoders/september2014Solns/blob/master/daysOfTheWeek.cpp">Get an input
no. from the user(between 1-7) and print the corresponding day of
the week. The usage of if and switch is not allowed.<br><credit>Solved by
Lokeshwaran. K, II year.</credit></a></p>
</li>
<li>
<p class="date"><a href="#">Aug<b>11</b></a></p>
<h3>Number to words</h3>
<p><a href = "https://github.com/csecoders/september2014Solns/blob/master/numberToWords.cpp">Get an input no. from the user(between 0-9) and print the number in words.
The usage of if and switch is not allowed.<br><credit>Solved by
Lokeshwaran. K, II year.</credit></a></p>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>