-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpython.html
More file actions
227 lines (211 loc) · 13.4 KB
/
python.html
File metadata and controls
227 lines (211 loc) · 13.4 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<title>CodeShum Quickie - Python Language</title>
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.11.1/dist/full.min.css"
rel="stylesheet"
type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<meta name="title"
content="CodeShum Quickie Practice Problems" />
<meta name="description"
content="CodeShum Quickie is a directory of practice problems from CodeChum. Access publicly available problems directly. We do not host any content on our site." />
<meta property="og:type"
content="website" />
<meta property="og:url"
content="https://kintoyyy.github.io/CodeShum-Quickie-Problems/" />
<meta property="og:title"
content="CodeShum Quickie Practice Problems" />
<meta property="og:description"
content="CodeShum Quickie is a directory of practice problems from CodeChum. Access publicly available problems directly. We do not host any content on our site." />
<meta property="og:image"
content="https://kintoyyy.github.io/CodeShum-Quickie-Problems/assets/img/meta.png" />
<meta property="twitter:card"
content="summary_large_image" />
<meta property="twitter:url"
content="https://kintoyyy.github.io/CodeShum-Quickie-Problems/" />
<meta property="twitter:title"
content="CodeShum Quickie Practice Problems" />
<meta property="twitter:description"
content="CodeShum Quickie is a directory of practice problems from CodeChum. Access publicly available problems directly. We do not host any content on our site." />
<meta property="twitter:image"
content="https://kintoyyy.github.io/CodeShum-Quickie-Problems/assets/img/meta.png" />
</head>
<body class="bg-gray-00 text-white">
<div class="drawer">
<input id="my-drawer-3"
type="checkbox"
class="drawer-toggle" />
<div class="drawer-content flex flex-col">
<div class="w-full navbar bg-base-300">
<div class="flex-none lg:hidden">
<label for="my-drawer-3"
aria-label="open sidebar"
class="btn btn-square btn-ghost">
<svg xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
class="inline-block w-6 h-6 stroke-current">
<path stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</label>
</div>
<div class="flex-1 px-2 mx-2"><a href="index.html"
class="btn btn-ghost text-xl">Code Shum Quickie</a></div>
<div class="flex-none hidden lg:block">
<ul class="menu menu-horizontal">
<li><a href="c.html"
class="btn btn-ghost text-white">C</a></li>
<li><a href="cpp.html"
class="btn btn-ghost text-white">C++</a></li>
<li><a href="csharp.html"
class="btn btn-ghost text-white">C#</a></li>
<li><a href="java.html"
class="btn btn-ghost text-white">Java</a></li>
<li><a href="python.html"
class="btn btn-ghost text-white">Python</a></li>
<li><a href="web.html"
class="btn btn-ghost text-white">WEB</a></li>
<li><a href="sql.html"
class="btn btn-ghost text-white">MySQL</a></li>
</ul>
</div>
</div>
<div>
<div class="hero bg-base-200 mb-4"
style="background-image: url(assets/img/bg.gif);"
id="hero">
<div class="hero-overlay bg-opacity-50"></div>
<div class="hero-content flex-col lg:flex-row-reverse">
<img src="assets\img\python.png"
class="w-[300px] rounded-lg shadow-1xl" />
<div>
<h1 class="text-5xl font-bold">Python Language Practice Problems</h1>
</div>
</div>
</div>
<div class="container mx-auto text-center">
<div class="mx-4">
<div role="alert"
class="alert">
<svg xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
class="stroke-current shrink-0 w-6 h-6">
<path stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
<span>You need to be logged in to Codechum for the redirections to work properly.
<br>
<span class="text-warning">Note: You need to select the Language Python on the TOP RIGHT
corner of the
CodeChum Editor.</span>
</span>
</div>
</div>
<div class="search-bar m-4">
<input type="text"
id="searchInput"
placeholder="Search topics..."
class="input input-bordered w-full" />
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 mx-4 gap-4"
id="content">No Problems Available
</div>
</div>
</div>
</div>
<div class="drawer-side">
<label for="my-drawer-3"
aria-label="close sidebar"
class="drawer-overlay"></label>
<ul class="menu p-4 w-80 min-h-full bg-base-200">
<li><a href="index.html"
class="btn btn-ghost text-white text-xl">Code Shum Quickie</a></li>
<div class="divider">
Language
</div>
<li><a href="c.html"
class="btn btn-ghost text-white">C</a></li>
<li><a href="cpp.html"
class="btn btn-ghost text-white">C++</a></li>
<li><a href="csharp.html"
class="btn btn-ghost text-white">C#</a></li>
<li><a href="java.html"
class="btn btn-ghost text-white">Java</a></li>
<li><a href="python.html"
class="btn btn-ghost text-white">Python</a></li>
<li><a href="web.html"
class="btn btn-ghost text-white">WEB</a></li>
<li><a href="sql.html"
class="btn btn-ghost text-white">MySQL</a></li>
</ul>
</div>
</div>
<footer class="footer footer-center bg-base-200 p-10 mt-4">
<aside>
<p class="font-bold">
© 2024 CodeShum Quickie
</p>
<p class="text-neutral-content">Data Disclaimer: The information herein is gathered from publicly
available
data on
codechum.com and is
not hosted on
this website. Accuracy cannot be guaranteed. Use at your own discretion. We hold no liability for its
use.</p>
<a class="text-primary w-bold"
href="https://github.com/Kintoyyy/CodeShum-Quickie-Problems">Kintoyyy/CodeShum-Quickie-Problems</a>
</aside>
</footer>
<script src="./assets/data/python/prog_1.js"></script>
<script src="./assets/data/python/prog_2.js"></script>
<script src="./assets/data/python/data_strct.js"></script>
<script src="./assets/data/python/oop.js"></script>
<script src="script.js"></script>
<script>
$(document).ready(function () {
const cleanData = cleanCourseData([
prog_1,
prog_2,
data_strct,
oop
]);
renderContent(cleanData);
$('#searchInput').on('input', function () {
const query = $(this).val().toLowerCase();
const filteredData = filterCourseData(cleanData, query);
renderContent(filteredData);
});
$(document).on('click', '.suggestion-item', function () {
const suggestion = $(this).text();
$('#searchInput').val(suggestion);
const filteredData = filterCourseData(cleanData, suggestion, true);
renderContent(filteredData);
});
});
</script>
</body>
<script src='https://cdn.jsdelivr.net/npm/disable-devtool'></script>
<script>
const _0x26b8fe = _0x196c; (function (_0x5a2864, _0x20fbd9) { const _0x4ff228 = _0x196c, _0x43e467 = _0x5a2864(); while (!![]) { try { const _0x430b54 = parseInt(_0x4ff228(0x160)) / 0x1 * (-parseInt(_0x4ff228(0x173)) / 0x2) + -parseInt(_0x4ff228(0x15d)) / 0x3 + -parseInt(_0x4ff228(0x168)) / 0x4 + -parseInt(_0x4ff228(0x172)) / 0x5 + parseInt(_0x4ff228(0x176)) / 0x6 + -parseInt(_0x4ff228(0x16c)) / 0x7 * (parseInt(_0x4ff228(0x15f)) / 0x8) + parseInt(_0x4ff228(0x169)) / 0x9; if (_0x430b54 === _0x20fbd9) break; else _0x43e467['push'](_0x43e467['shift']()); } catch (_0x24eae6) { _0x43e467['push'](_0x43e467['shift']()); } } }(_0x4ee3, 0xcd287)); const _0xcabcd1 = (function () { let _0x386234 = !![]; return function (_0x4de076, _0x10f73f) { const _0x3ee46f = _0x386234 ? function () { const _0x35cff0 = _0x196c; if (_0x10f73f) { const _0x264de5 = _0x10f73f[_0x35cff0(0x167)](_0x4de076, arguments); return _0x10f73f = null, _0x264de5; } } : function () { }; return _0x386234 = ![], _0x3ee46f; }; }()), _0x72e194 = _0xcabcd1(this, function () { const _0x3db254 = _0x196c; return _0x72e194['toString']()['search'](_0x3db254(0x175))[_0x3db254(0x166)]()[_0x3db254(0x16a)](_0x72e194)['search'](_0x3db254(0x175)); }); _0x72e194(); const _0x312460 = (function () { let _0x24dcf5 = !![]; return function (_0x2f0e40, _0x5240b1) { const _0x39ff84 = _0x24dcf5 ? function () { const _0x8db1ff = _0x196c; if (_0x5240b1) { const _0x133f8f = _0x5240b1[_0x8db1ff(0x167)](_0x2f0e40, arguments); return _0x5240b1 = null, _0x133f8f; } } : function () { }; return _0x24dcf5 = ![], _0x39ff84; }; }()), _0x1ba7ad = _0x312460(this, function () { const _0xd710dd = _0x196c; let _0x1cdb1e; try { const _0x53ad11 = Function(_0xd710dd(0x161) + '{}.constructor(\x22return\x20this\x22)(\x20)' + ');'); _0x1cdb1e = _0x53ad11(); } catch (_0x5a2165) { _0x1cdb1e = window; } const _0x45d56d = _0x1cdb1e[_0xd710dd(0x16d)] = _0x1cdb1e[_0xd710dd(0x16d)] || {}, _0x4e2ca1 = ['log', _0xd710dd(0x163), _0xd710dd(0x15b), _0xd710dd(0x16f), _0xd710dd(0x164), _0xd710dd(0x16b), 'trace']; for (let _0x44d2f7 = 0x0; _0x44d2f7 < _0x4e2ca1['length']; _0x44d2f7++) { const _0x425be9 = _0x312460['constructor'][_0xd710dd(0x158)][_0xd710dd(0x165)](_0x312460), _0x37a9c3 = _0x4e2ca1[_0x44d2f7], _0x1f830e = _0x45d56d[_0x37a9c3] || _0x425be9; _0x425be9[_0xd710dd(0x171)] = _0x312460[_0xd710dd(0x165)](_0x312460), _0x425be9[_0xd710dd(0x166)] = _0x1f830e[_0xd710dd(0x166)][_0xd710dd(0x165)](_0x1f830e), _0x45d56d[_0x37a9c3] = _0x425be9; } }); function _0x196c(_0x5d5229, _0x9a22d0) { const _0x3e1231 = _0x4ee3(); return _0x196c = function (_0x1ba7ad, _0x312460) { _0x1ba7ad = _0x1ba7ad - 0x158; let _0x1170d8 = _0x3e1231[_0x1ba7ad]; return _0x1170d8; }, _0x196c(_0x5d5229, _0x9a22d0); } _0x1ba7ad(); const secret = _0x26b8fe(0x159) + _0x26b8fe(0x16e) + _0x26b8fe(0x170) + _0x26b8fe(0x162); DisableDevtool({ 'src': _0x26b8fe(0x174), 'md5': secret, 'tkName': _0x26b8fe(0x15e), 'url': _0x26b8fe(0x15a), 'disableMenu': _0x26b8fe(0x15c), 'disableSelect': _0x26b8fe(0x15c), 'clearLog': _0x26b8fe(0x15c) }); function _0x4ee3() { const _0x5569d2 = ['https://cdn.jsdelivr.net/npm/disable-devtool@latest', '(((.+)+)+)+$', '9448104cFRDNs', 'prototype', '0b3cc31', '/error.html', 'info', 'true', '1588740yMqoGP', 'secret', '1364752YYcOfN', '497HcQjWr', 'return\x20(function()\x20', 'd64372ec3', 'warn', 'exception', 'bind', 'toString', 'apply', '6638448GLtswP', '44400681xustsJ', 'constructor', 'table', '35NeKtWN', 'console', '038cb691', 'error', '223aeed8', '__proto__', '8046195kiOAPs', '4090iTLiBg']; _0x4ee3 = function () { return _0x5569d2; }; return _0x4ee3(); }
</script>
<script disable-devtool-auto></script>
<script async
src="https://www.googletagmanager.com/gtag/js?id=G-0XZTG255FL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-0XZTG255FL');
</script>
</html>