-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntuit.html
More file actions
256 lines (195 loc) · 9.88 KB
/
Intuit.html
File metadata and controls
256 lines (195 loc) · 9.88 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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<!-- /*
* Template Name: Untreefolio
* Template Author: Untree.co
* Tempalte URI: https://untree.co/
* License: https://creativecommons.org/licenses/by/3.0/
*/ -->
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Untree.co">
<link rel="shortcut icon" href="images/man.png">
<meta name="description" content="" />
<meta name="keywords" content="" />
<link rel="stylesheet" href="css/vendor/icomoon/style.css">
<link rel="stylesheet" href="css/vendor/owl.carousel.min.css">
<link rel="stylesheet" href="css/vendor/animate.min.css">
<link rel="stylesheet" href="css/vendor/aos.css">
<link rel="stylesheet" href="css/vendor/bootstrap.min.css">
<link rel="stylesheet" href="css/vendor/jquery.fancybox.min.css">
<!-- Theme Style -->
<link rel="stylesheet" href="css/style.css">
</head>
<body data-spy="scroll" data-target=".site-nav-target" data-offset="200">
<nav class="unslate_co--site-mobile-menu">
<div class="close-wrap d-flex">
<a href="#" class="d-flex ml-auto js-menu-toggle">
<span class="close-label">Close</span>
<div class="close-times">
<span class="bar1"></span>
<span class="bar2"></span>
</div>
</a>
</div>
<div class="site-mobile-inner"></div>
</nav>
<div class="unslate_co--site-wrap">
<div class="unslate_co--site-inner">
<div class=" text-left unslate_co--site-nav site-nav-target site-logo pos-absolute">
<a href="index.html" class="unslate_co--site-logo"> ㅤCodeKickStart<span>.</span></a>
</div>
<nav class="unslate_co--site-nav site-nav-target">
<div class="container">
<div class="row align-items-center justify-content-between text-left">
<div >
</div>
<div class="col-md-4 text-right text-lg-left">
<ul class="site-nav-ul js-clone-nav text-left d-none d-lg-inline-block">
<li><a href="/index.html" class="nav-link">Home</a></li>
<li><a href="/Arsh_Sheet.html" target="_blank" class="nav-link">Questions</a></li>
</ul>
<ul class="site-nav-ul-none-onepage text-right d-inline-block d-lg-none">
<li><a href="#" class="js-menu-toggle">Menu</a></li>
</ul>
</div>
</div>
</div>
</nav>
<!-- END nav -->
<br>
<br>
<br>
<div class="unslate_co--section" id="table-section">
<div class="container">
<div class="section-heading-wrap text-center mb-5" data-aos="fade-up">
<h2 class="heading-h2 text-center divider">
Intuit
</h2>
</div>
<table class="table align-middle">
<thead>
<tr>
<th scope="col">S.No</th>
<th scope="col">Problem</th>
<th scope="col">PraticeLink</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>
Partition a set into two subsets such that the difference of subset sums is minimum</td>
<td><a href="https://www.geeksforgeeks.org/partition-a-set-into-two-subsets-such-that-the-difference-of-subset-sums-is-minimum/" target="_blank" >Click here</a></td>
</tr>
<tr class="align-bottom">
<th scope="row">2</th>
<td>Given a 2D board of letters and a word. Check if the word exists in the board.
</td>
<td><a href="https://practice.geeksforgeeks.org/problems/word-search/1/" target="_blank">Click here</a></td>
</tr>
<tr class="align-bottom">
<th scope="row">3</th>
<td>Given a string consisting of some numbers, not separated by any separator. The numbers are positive integers and the sequence increases by one at each number except the missing number. The task is to complete the function missingNumber which return's the missing number. </td>
<td><a href="https://practice.geeksforgeeks.org/problems/find-the-missing-no-in-string/1/" target="_blank">Click here</a></td>
</tr>
<tr class="align-bottom">
<th scope="row">4</th>
<td>Given a number K and string str of digits denoting a positive integer, build the largest number possible by performing swap operations on the digits of str at most K times.</td>
<td><a href="https://practice.geeksforgeeks.org/problems/largest-number-in-k-swaps-1587115620/1"target="_blank">Click here</a></td>
</tr>
<tr class="align-bottom">
<th scope="row">5</th>
<td>Given an array nums which consists of non-negative integers and an integer m, you can split the array into m non-empty continuous subarrays.
</td>
<td><a href="https://leetcode.com/problems/split-array-largest-sum/"target="_blank">Click here</a></td>
</tr>
<tr class="align-bottom">
<th scope="row">6</th>
<td> findIn Mountain Array</td>
<td><a href="https://leetcode.com/problems/find-in-mountain-array/"target="_blank">Click here</a></td>
</tr>
<tr class="align-bottom">
<th scope="row">7</th>
<td>Capacity To Ship Packages Within D Days</td>
<td><a href="https://leetcode.com/problems/capacity-to-ship-packages-within-d-days/"target="_blank">Click here</a></td>
</tr>
<tr class="align-bottom">
<th scope="row">8</th>
<td> Number of Boomerangs
</td>
<td><a href="https://leetcode.com/problems/number-of-boomerangs/"target="_blank">Click here</a></td>
</tr>
<tr class="align-bottom">
<th scope="row">9</th>
<td>Pacific Atlantic Water Flow
</td>
<td><a href="https://leetcode.com/problems/pacific-atlantic-water-flow/"target="_blank">Click here</a></td>
</tr>
<tr class="align-bottom">
<th scope="row">10</th>
<td> Number of Provinces
</td>
<td><a href="https://leetcode.com/problems/number-of-provinces/"target="_blank">Click here</a></td>
</tr>
<tr class="align-bottom">
<th scope="row">11</th>
<td> Construct Quad Tree
</td>
<td><a href="https://leetcode.com/problems/construct-quad-tree/"target="_blank">Click here</a></td>
</tr>
<tr class="align-bottom">
<th scope="row">12</th>
<td>course-schedule-ii
</td>
<td><a href="https://leetcode.com/problems/course-schedule-ii/"target="_blank">Click here</a></td>
</tr>
<tr class="align-bottom">
<th scope="row">13</th>
<td>Minimum swaps to arrange a binary Grid
</td>
<td><a href="https://leetcode.com/problems/minimum-swaps-to-arrange-a-binary-grid"target="_blank">Click here</a></td>
</tr>
<tr class="align-bottom">
<th scope="row">14</th>
<td>As far from land as possible
</td>
<td><a href="https://leetcode.com/problems/as-far-from-land-as-possible/"target="_blank">Click here</a></td>
</tr>
<tr class="align-bottom">
<th scope="row">15</th>
<td>Koko Eating Bananas </td>
<td><a href="https://leetcode.com/problems/koko-eating-bananas/"target="_blank">Click here</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div> <!-- END .unslate_co-site-inner -->
<footer class="unslate_co--footer unslate_co--section">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-7">
<div class="footer-site-logo"><a href="#">Arsh Goyal</a></div>
<ul class="list-unstyled social-icons light">
<li><a href="https://www.instagram.com/arshgoyalyt/" target="_blank"><span class="icon-instagram"></span></a></li>
<li><a href="https://twitter.com/arsh_goyal" target="_blank"><span class="icon-twitter"></span></a></li>
<li><a href="https://www.linkedin.com/in/arshgoyal/" target="_blank"><span class="icon-linkedin"></span></a></li>
<li><a href="https://www.youtube.com/c/ArshGoyal" target="_blank"><span class="icon-youtube"></span></a></li>
</ul>
<p class="site-copyright"><small>Copyright ©<script>document.write(new Date().getFullYear());</script>. All Rights Reserved. — Designed with love by <a href="https://untree.co" target="_blank" rel="nofollow noopener">Untree.co</a> • <a href="https://untree.co/license" target="_blank" rel="nofollow noopener">License</a> </small></p>
</div>
</div>
</div>
</footer>
</div>
<!-- Loader -->
<div id="unslate_co--overlayer"></div>
<div class="site-loader-wrap">
<div class="site-loader"></div>
</div>
<script src="js/scripts-dist.js"></script>
<script src="js/main.js"></script>
</body>
</html>