├── .gitattributes ├── .gitignore ├── Algorithms └── README.md ├── Behavioral interview ├── README.md ├── Set 1 │ └── README.md ├── Set 10 │ └── README.md ├── Set 2 │ └── README.md ├── Set 3 │ └── README.md └── Set 8 │ └── README.md ├── LICENSE.md ├── Leetcode ├── 1. Two Sum │ ├── README.md │ ├── solution1.cpp │ ├── solution1.java │ ├── solution1.md │ ├── solution1.py │ ├── solution2.cpp │ ├── solution2.java │ ├── solution2.md │ ├── solution2.py │ ├── solution3.cpp │ ├── solution3.java │ ├── solution3.md │ ├── solution3.py │ ├── solution4.cpp │ ├── solution4.java │ ├── solution4.md │ └── solution4.py ├── 10. Regular Expression Matching │ ├── 1.png │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ └── solution3.py ├── 100. Same Tree │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1002. Find Common Characters │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1005. Maximize Sum Of Array After K Negations │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1008. Construct Binary Search Tree from Preorder Traversal │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1009. Complement of Base 10 Integer │ ├── README.md │ └── solution1.py ├── 101. Symmetric Tree │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1010. Pairs of Songs With Total Durations Divisible by 60 │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1013. Partition Array Into Three Parts With Equal Sum │ ├── README.md │ └── solution1.py ├── 1018. Binary Prefix Divisible By 5 │ ├── README.md │ └── solution1.py ├── 102. Binary Tree Level Order Traversal │ ├── README.md │ └── solution1.py ├── 1021. Remove Outermost Parentheses │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1022. Sum of Root To Leaf Binary Numbers │ ├── README.md │ └── solution1.py ├── 1025. Divisor Game │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1028. Recover a Tree From Preorder Traversal │ ├── README.md │ └── solution1.py ├── 1029. Two City Scheduling │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 103. Binary Tree Zigzag Level Order Traversal │ ├── README.md │ └── solution1.py ├── 1030. Matrix Cells in Distance Order │ ├── README.md │ └── solution1.py ├── 1033. Moving Stones Until Consecutive │ ├── README.md │ └── solution1.py ├── 1037. Valid Boomerang │ ├── README.md │ └── solution1.py ├── 1038. Binary Search Tree to Greater Sum Tree │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 104. Maximum Depth of Binary Tree │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1042. Flower Planting With No Adjacent │ ├── README.md │ └── solution1.py ├── 1046. Last Stone Weight │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1047. Remove All Adjacent Duplicates In String │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 105. Construct Binary Tree from Preorder and Inorder Traversal │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1050. Actors and Directors Who Cooperated At Least Three Times │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 1051. Height Checker │ ├── README.md │ └── solution1.py ├── 106. Construct Binary Tree from Inorder and Postorder Traversal │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1068. Product Sales Analysis I │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 1069. Product Sales Analysis II │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 107. Binary Tree Level Order Traversal II │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1071. Greatest Common Divisor of Strings │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1074. Number of Submatrices That Sum to Target │ ├── README.md │ └── solution1.py ├── 1078. Occurrences After Bigram │ ├── README.md │ └── solution1.py ├── 1079. Letter Tile Possibilities │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 108. Convert Sorted Array to Binary Search Tree │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1082. Sales Analysis I │ ├── .secret │ ├── README.md │ ├── solution1.sql │ └── solution2.sql ├── 1085. Sum of Digits in the Minimum Number │ ├── .secret │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1086. High Five │ ├── .secret │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1089. Duplicate Zeros │ ├── README.md │ └── solution1.py ├── 109. Convert Sorted List to Binary Search Tree │ ├── README.md │ └── solution1.py ├── 1096. Brace Expansion II │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 11. Container With Most Water │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ └── solution2.py ├── 110. Balanced Binary Tree │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1103. Distribute Candies to People │ ├── README.md │ └── solution1.py ├── 1104. Path In Zigzag Labelled Binary Tree │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1108. Defanging an IP Address │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 111. Minimum Depth of Binary Tree │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1111. Maximum Nesting Depth of Two Valid Parentheses Strings │ ├── README.md │ └── solution1.py ├── 1114. Print in Order │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1119. Remove Vowels from a String │ ├── .secret │ ├── README.md │ └── solution1.py ├── 112. Path Sum │ ├── README.md │ └── solution1.py ├── 1122. Relative Sort Array │ ├── README.md │ └── solution1.py ├── 1128. Number of Equivalent Domino Pairs │ ├── README.md │ └── solution1.py ├── 113. Path Sum II │ ├── README.md │ └── solution1.py ├── 1134. Armstrong Number │ ├── .secret │ ├── README.md │ └── solution1.py ├── 1137. N-th Tribonacci Number │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 114. Flatten Binary Tree to Linked List │ ├── README.md │ └── solution1.py ├── 1148. Article Views I │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 115. Distinct Subsequences │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 1154. Day of the Year │ ├── README.md │ └── solution1.py ├── 116. Populating Next Right Pointers in Each Node │ ├── README.md │ └── solution1.py ├── 1160. Find Words That Can Be Formed by Characters │ ├── README.md │ └── solution1.py ├── 1161. Maximum Level Sum of a Binary Tree │ ├── README.md │ └── solution1.py ├── 1165. Single-Row Keyboard │ ├── .secret │ ├── README.md │ └── solution1.py ├── 117. Populating Next Right Pointers in Each Node II │ ├── README.md │ └── solution1.py ├── 1170. Compare Strings by Frequency of the Smallest Character │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1173. Immediate Food Delivery I │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 1175. Prime Arrangements │ ├── README.md │ └── solution1.py ├── 1179. Reformat Department Table │ ├── README.md │ ├── solution1.sql │ └── solution2.sql ├── 118. Pascal's Triangle │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1180. Count Substrings with Only One Distinct Letter │ ├── .secret │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1184. Distance Between Bus Stops │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1185. Day of the Week │ ├── README.md │ └── solution1.py ├── 1189. Maximum Number of Balloons │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 119. Pascal's Triangle II │ ├── README.md │ └── solution1.py ├── 12. Integer to Roman │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ └── solution2.py ├── 120. Triangle │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1200. Minimum Absolute Difference │ ├── README.md │ └── solution1.py ├── 1207. Unique Number of Occurrences │ ├── README.md │ └── solution1.py ├── 121. Best Time to Buy and Sell Stock │ ├── README.md │ └── solution1.py ├── 1213. Intersection of Three Sorted Arrays │ ├── .secret │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 1217. Play with Chips │ ├── README.md │ └── solution1.py ├── 122. Best Time to Buy and Sell Stock II │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1221. Split a String in Balanced Strings │ ├── README.md │ └── solution1.py ├── 123. Best Time to Buy and Sell Stock III │ ├── README.md │ └── solution1.py ├── 1232. Check If It Is a Straight Line │ ├── README.md │ └── solution1.py ├── 1237. Find Positive Integer Solution for a Given Equation │ ├── README.md │ └── solution1.py ├── 124. Binary Tree Maximum Path Sum │ ├── README.md │ └── solution1.py ├── 125. Valid Palindrome │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1250. Check If It Is a Good Array │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 1251. Average Selling Price │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 1252. Cells with Odd Values in a Matrix │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1255. Maximum Score Words Formed by Letters │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 126. Word Ladder II │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 1260. Shift 2D Grid │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1261. Find Elements in a Contaminated Binary Tree │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1266. Minimum Time Visiting All Points │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 127. Word Ladder │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1275. Find Winner on a Tic Tac Toe Game │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1277. Count Square Submatrices with All Ones │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 1278. Palindrome Partitioning III │ ├── README.md │ └── solution1.py ├── 1279. Traffic Light Controlled Intersection │ ├── .secret │ ├── README.md │ └── solution1.py ├── 128. Longest Consecutive Sequence │ ├── README.md │ └── solution1.py ├── 1280. Students and Examinations │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 1281. Subtract the Product and Sum of Digits of an Integer │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1282. Group the People Given the Group Size They Belong To │ ├── README.md │ └── solution1.py ├── 1284. Minimum Number of Flips to Convert Binary Matrix to Zero Matrix │ ├── README.md │ └── solution1.py ├── 1286. Iterator for Combination │ ├── README.md │ └── solution1.py ├── 1287. Element Appearing More Than 25% In Sorted Array │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1289. Minimum Falling Path Sum II │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 129. Sum Root to Leaf Numbers │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1290. Convert Binary Number in a Linked List to Integer │ ├── README.md │ └── solution1.py ├── 1295. Find Numbers with Even Number of Digits │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1298. Maximum Candies You Can Get from Boxes │ ├── README.md │ └── solution1.py ├── 1299. Replace Elements with Greatest Element on Right Side │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 13. Roman to Integer │ ├── README.md │ ├── solution1.md │ └── solution1.py ├── 130. Surrounded Regions │ ├── README.md │ └── solution1.py ├── 1302. Deepest Leaves Sum │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1303. Find the Team Size │ ├── .secret │ ├── README.md │ ├── solution1.sql │ └── solution2.sql ├── 1304. Find N Unique Integers Sum up to Zero │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1305. All Elements in Two Binary Search Trees │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1309. Decrypt String from Alphabet to Integer Mapping │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 131. Palindrome Partitioning │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1313. Decompress Run-Length Encoded List │ ├── README.md │ └── solution1.py ├── 1314. Matrix Block Sum │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1315. Sum of Nodes with Even-Valued Grandparent │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1317. Convert Integer to the Sum of Two No-Zero Integers │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 132. Palindrome Partitioning II │ ├── README.md │ └── solution1.py ├── 1320. Minimum Distance to Type a Word Using Two Fingers │ ├── README.md │ └── solution1.py ├── 1323. Maximum 69 Number │ ├── README.md │ └── solution1.py ├── 1325. Delete Leaves With a Given Value │ ├── README.md │ └── solution1.py ├── 1327. List the Products Ordered in a Period │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 1329. Sort the Matrix Diagonally │ ├── README.md │ └── solution1.py ├── 133. Clone Graph │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1331. Rank Transform of an Array │ ├── README.md │ └── solution1.py ├── 1332. Remove Palindromic Subsequences │ ├── README.md │ └── solution1.py ├── 1337. The K Weakest Rows in a Matrix │ ├── README.md │ └── solution1.py ├── 134. Gas Station │ ├── README.md │ └── solution1.py ├── 1342. Number of Steps to Reduce a Number to Zero │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1346. Check If N and Its Double Exist │ ├── README.md │ └── solution1.py ├── 1347. Minimum Number of Steps to Make Two Strings Anagram │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 135. Candy │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1350. Students With Invalid Departments │ ├── .secret │ ├── README.md │ ├── solution1.sql │ └── solution2.sql ├── 1351. Count Negative Numbers in a Sorted Matrix │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1356. Sort Integers by The Number of 1 Bits │ ├── README.md │ └── solution1.py ├── 136. Single Number │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ ├── solution4.py │ └── solution5.py ├── 1360. Number of Days Between Two Dates │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1365. How Many Numbers Are Smaller Than the Current Number │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 137. Single Number II │ ├── README.md │ └── solution1.py ├── 1370. Increasing Decreasing String │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1374. Generate a String With Characters That Have Odd Counts │ ├── README.md │ └── solution1.py ├── 1378. Replace Employee ID With The Unique Identifier │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 1379. Find a Corresponding Node of a Binary Tree in a Clone of That Tree │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 138. Copy List with Random Pointer │ ├── README.md │ └── solution1.py ├── 1380. Lucky Numbers in a Matrix │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1381. Design a Stack With Increment Operation │ ├── README.md │ └── solution1.py ├── 1382. Balance a Binary Search Tree │ ├── README.md │ └── solution1.py ├── 1385. Find the Distance Value Between Two Arrays │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1387. Sort Integers by The Power Value │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1389. Create Target Array in the Given Order │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 139. Word Break │ ├── README.md │ └── solution1.py ├── 1394. Find Lucky Integer in an Array │ ├── README.md │ └── solution1.py ├── 1395. Count Number of Teams │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1399. Count Largest Group │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 14. Longest Common Prefix │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ ├── solution3.py │ ├── solution4.md │ ├── solution4.py │ ├── solution5.md │ ├── solution5.py │ ├── solution6.md │ └── solution6.py ├── 140. Word Break II │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1402. Reducing Dishes │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1403. Minimum Subsequence in Non-Increasing Order │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1407. Top Travellers │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 1408. String Matching in an Array │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1409. Queries on a Permutation With Key │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 141. Linked List Cycle │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1411. Number of Ways to Paint N × 3 Grid │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1413. Minimum Value to Get Positive Step by Step Sum │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1415. The k-th Lexicographical String of All Happy Strings of Length n │ ├── README.md │ └── solution1.py ├── 1417. Reformat The String │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 142. Linked List Cycle II │ ├── README.md │ └── solution1.py ├── 1420. Build Array Where You Can Find The Maximum Exactly K Comparisons │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1422. Maximum Score After Splitting a String │ ├── README.md │ └── solution1.py ├── 143. Reorder List │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1431. Kids With the Greatest Number of Candies │ ├── README.md │ └── solution1.py ├── 1435. Create a Session Bar Chart │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 1436. Destination City │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1439. Find the Kth Smallest Sum of a Matrix With Sorted Rows │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 144. Binary Tree Preorder Traversal │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1441. Build an Array With Stack Operations │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1442. Count Triplets That Can Form Two Arrays of Equal XOR │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 1446. Consecutive Characters │ ├── README.md │ └── solution1.py ├── 1448. Count Good Nodes in Binary Tree │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 145. Binary Tree Postorder Traversal │ ├── README.md │ └── solution1.py ├── 1450. Number of Students Doing Homework at a Given Time │ ├── README.md │ └── solution1.py ├── 1455. Check If a Word Occurs As a Prefix of Any Word in a Sentence │ ├── README.md │ └── solution1.py ├── 146. LRU Cache │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1460. Make Two Arrays Equal by Reversing Sub-arrays │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1463. Cherry Pickup II │ ├── README.md │ └── solution1.py ├── 1464. Maximum Product of Two Elements in an Array │ ├── README.md │ └── solution1.py ├── 1467. Probability of a Two Boxes Having The Same Number of Distinct Balls │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1469. Find All The Lonely Nodes │ ├── .secret │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 147. Insertion Sort List │ ├── README.md │ └── solution1.py ├── 1470. Shuffle the Array │ ├── README.md │ └── solution1.py ├── 1474. Delete N Nodes After M Nodes of a Linked List │ ├── .secret │ ├── README.md │ └── solution1.py ├── 1475. Final Prices With a Special Discount in a Shop │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1476. Subrectangle Queries │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 148. Sort List │ ├── README.md │ └── solution1.py ├── 1480. Running Sum of 1d Array │ ├── README.md │ └── solution1.py ├── 1484. Group Sold Products By The Date │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 1486. XOR Operation in an Array │ ├── README.md │ └── solution1.py ├── 149. Max Points on a Line │ ├── README.md │ └── solution1.py ├── 1491. Average Salary Excluding the Minimum and Maximum Salary │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1496. Path Crossing │ ├── README.md │ └── solution1.py ├── 15. 3Sum │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ ├── solution3.py │ ├── solution4.md │ ├── solution4.py │ ├── solution5.md │ ├── solution5.py │ ├── solution6.md │ └── solution6.py ├── 150. Evaluate Reverse Polish Notation │ ├── README.md │ └── solution1.py ├── 1502. Can Make Arithmetic Progression From Sequence │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1507. Reformat Date │ ├── README.md │ └── solution1.py ├── 151. Reverse Words in a String │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1511. Customer Order Frequency │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 1512. Number of Good Pairs │ ├── README.md │ └── solution1.py ├── 1517. Find Users With Valid E-Mails │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 1518. Water Bottles │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 152. Maximum Product Subarray │ ├── README.md │ └── solution1.py ├── 1523. Count Odd Numbers in an Interval Range │ ├── README.md │ └── solution1.py ├── 1527. Patients With a Condition │ ├── .secret │ ├── README.md │ ├── solution1.sql │ └── solution2.sql ├── 1528. Shuffle String │ ├── README.md │ └── solution1.py ├── 1529. Bulb Switcher IV │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 153. Find Minimum in Rotated Sorted Array │ ├── README.md │ └── solution1.py ├── 1534. Count Good Triplets │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1539. Kth Missing Positive Number │ ├── README.md │ └── solution1.py ├── 154. Find Minimum in Rotated Sorted Array II │ ├── README.md │ └── solution1.py ├── 1544. Make The String Great │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 155. Min Stack │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1550. Three Consecutive Odds │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1551. Minimum Operations to Make Array Equal │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 1556. Thousand Separator │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1560. Most Visited Sector in a Circular Track │ ├── README.md │ └── solution1.py ├── 1561. Maximum Number of Coins You Can Get │ ├── README.md │ └── solution1.py ├── 1565. Unique Orders and Customers Per Month │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 1566. Detect Pattern of Length M Repeated K or More Times │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 157. Read N Characters Given Read4 │ ├── .secret │ ├── README.md │ └── solution1.py ├── 1571. Warehouse Manager │ ├── .secret │ ├── README.md │ ├── solution1.sql │ └── solution2.sql ├── 1572. Matrix Diagonal Sum │ ├── README.md │ └── solution1.py ├── 1576. Replace All ?'s to Avoid Consecutive Repeating Characters │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1581. Customer Who Visited but Did Not Make Any Transactions │ ├── .secret │ ├── README.md │ ├── solution1.sql │ └── solution2.sql ├── 1582. Special Positions in a Binary Matrix │ ├── README.md │ └── solution1.py ├── 1588. Sum of All Odd Length Subarrays │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1592. Rearrange Spaces Between Words │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1598. Crawler Log Folder │ ├── README.md │ └── solution1.py ├── 16. 3Sum Closest │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ └── solution2.py ├── 160. Intersection of Two Linked Lists │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 1603. Design Parking System │ ├── README.md │ └── solution1.py ├── 1608. Special Array With X Elements Greater Than or Equal X │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 162. Find Peak Element │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 164. Maximum Gap │ ├── README.md │ └── solution1.py ├── 165. Compare Version Numbers │ ├── README.md │ └── solution1.py ├── 166. Fraction to Recurring Decimal │ ├── README.md │ └── solution1.py ├── 167. Two Sum II - Input array is sorted │ ├── README.md │ └── solution1.py ├── 168. Excel Sheet Column Title │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 169. Majority Element │ ├── README.md │ └── solution1.py ├── 17. Letter Combinations of a Phone Number │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ └── solution2.py ├── 170. Two Sum III - Data structure design │ ├── .secret │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 171. Excel Sheet Column Number │ ├── README.md │ └── solution1.py ├── 172. Factorial Trailing Zeroes │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 173. Binary Search Tree Iterator │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 174. Dungeon Game │ ├── README.md │ └── solution1.py ├── 175. Combine Two Tables │ ├── README.md │ └── solution1.sql ├── 176. Second Highest Salary │ ├── README.md │ ├── solution1.sql │ └── solution2.sql ├── 177. Nth Highest Salary │ ├── README.md │ └── solution1.sql ├── 178. Rank Scores │ ├── README.md │ └── solution1.sql ├── 179. Largest Number │ ├── REAMDE.md │ └── solution1.py ├── 18. 4Sum │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ ├── solution3.py │ ├── solution4.md │ └── solution4.py ├── 180. Consecutive Numbers │ ├── README.md │ ├── solution1.sql │ └── solution2.sql ├── 181. Employees Earning More Than Their Managers │ ├── README.md │ └── solution1.sql ├── 182. Duplicate Emails │ ├── README.md │ └── solution1.sql ├── 183. Customers Who Never Order │ ├── README.md │ └── solution1.sql ├── 184. Department Highest Salary │ ├── README.md │ └── solution1.sql ├── 185. Department Top Three Salaries │ ├── README.md │ ├── solution1.sql │ └── solution2.sql ├── 187. Repeated DNA Sequences │ ├── README.md │ └── solution1.py ├── 188. Best Time to Buy and Sell Stock IV │ ├── README.md │ └── solution1.py ├── 189. Rotate Array │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 19. Remove Nth Node From End of List │ ├── 1.png │ ├── 2.png │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ └── solution2.py ├── 190. Reverse Bits │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 191. Number of 1 Bits │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ ├── solution4.py │ ├── solution5.py │ └── solution6.py ├── 192. Word Frequency │ ├── README.md │ └── solution1.sh ├── 193. Valid Phone Numbers │ ├── README.md │ ├── solution1.sh │ └── solution2.sh ├── 194. Transpose File │ ├── README.md │ ├── solution1.sh │ └── solution2.sh ├── 195. Tenth Line │ ├── README.md │ ├── solution1.sh │ └── solution2.sh ├── 196. Delete Duplicate Emails │ ├── README.md │ └── solution1.sql ├── 197. Rising Temperature │ ├── README.md │ └── solution1.sql ├── 198. House Robber │ ├── README.md │ └── solution1.py ├── 199. Binary Tree Right Side View │ ├── README.md │ └── solution1.py ├── 2. Add Two Numbers │ ├── 1.svg │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ ├── solution3.py │ ├── solution4.md │ ├── solution4.py │ ├── solution5.md │ └── solution5.py ├── 20. Valid Parentheses │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── README.md │ ├── solution1.md │ └── solution1.py ├── 200. Number of Islands │ ├── README.md │ └── solution1.py ├── 201. Bitwise AND of Numbers Range │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 202. Happy Number │ ├── README.md │ └── solution1.py ├── 203. Remove Linked List Elements │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 204. Count Primes │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 205. Isomorphic Strings │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 206. Reverse Linked List │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 207. Course Schedule │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 208. Implement Trie (Prefix Tree) │ ├── README.md │ └── solution1.py ├── 209. Minimum Size Subarray Sum │ ├── README.md │ └── solution1.py ├── 21. Merge Two Sorted Lists │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ └── solution3.py ├── 210. Course Schedule II │ ├── README.md │ └── solution1.py ├── 211. Add and Search Word - Data structure design │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 212. Word Search II │ ├── README.md │ └── solution1.py ├── 213. House Robber II │ ├── README.md │ └── solution1.py ├── 214. Shortest Palindrome │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 215. Kth Largest Element in an Array │ ├── README.md │ └── solution1.py ├── 216. Combination Sum III │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 217. Contains Duplicate │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 218. The Skyline Problem │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 219. Contains Duplicate II │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 22. Generate Parentheses │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ └── solution3.py ├── 220. Contains Duplicate III │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 221. Maximal Square │ ├── README.md │ └── solution1.py ├── 222. Count Complete Tree Nodes │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 223. Rectangle Area │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 224. Basic Calculator │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 225. Implement Stack using Queues │ ├── README.md │ └── solution1.py ├── 226. Invert Binary Tree │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 227. Basic Calculator II │ ├── README.md │ └── solution1.py ├── 228. Summary Ranges │ ├── README.md │ └── solution1.py ├── 229. Majority Element II │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 23. Merge k Sorted Lists │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution3.md │ ├── solution3.py │ ├── solution4.md │ ├── solution4.py │ ├── solution5.md │ ├── solution5.py │ ├── solution6.md │ └── solution6.py ├── 230. Kth Smallest Element in a BST │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 231. Power of Two │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 232. Implement Queue using Stacks │ ├── README.md │ └── solution1.py ├── 233. Number of Digit One │ ├── README.md │ └── solution1.py ├── 234. Palindrome Linked List │ ├── README.md │ └── solution1.py ├── 235. Lowest Common Ancestor of a Binary Search Tree │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 236. Lowest Common Ancestor of a Binary Tree │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 237. Delete Node in a Linked List │ ├── README.md │ └── solution1.py ├── 238. Product of Array Except Self │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 239. Sliding Window Maximum │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 24. Swap Nodes in Pairs │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ └── solution2.py ├── 240. Search a 2D Matrix II │ ├── README.md │ └── solution1.py ├── 241. Different Ways to Add Parentheses │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 242. Valid Anagram │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 243. Shortest Word Distance │ ├── .secret │ ├── README.md │ └── solution1.py ├── 246. Strobogrammatic Number │ ├── .secret │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 25. Reverse Nodes in k-Group │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ └── solution2.py ├── 252. Meeting Rooms │ ├── .secret │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 257. Binary Tree Paths │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 258. Add Digits │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 26. Remove Duplicates from Sorted Array │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ └── solution3.py ├── 260. Single Number III │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 262. Trips and Users │ ├── README.md │ └── solution1.sql ├── 263. Ugly Number │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 264. Ugly Number II │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 266. Palindrome Permutation │ ├── .secret │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 268. Missing Number │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 27. Remove Element │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ ├── solution3.py │ ├── solution4.md │ └── solution4.py ├── 270. Closest Binary Search Tree Value │ ├── .secret │ ├── README.md │ └── solution1.py ├── 273. Integer to English Words │ ├── README.md │ └── solution1.py ├── 274. H-Index │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 275. H-Index II │ ├── README.md │ └── solution1.py ├── 276. Paint Fence │ ├── .secret │ ├── README.md │ └── solution1.py ├── 278. First Bad Version │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 279. Perfect Squares │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 28. Implement strStr() │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ ├── solution3.py │ ├── solution4.md │ ├── solution4.py │ ├── solution5.md │ └── solution5.py ├── 282. Expression Add Operators │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 283. Move Zeroes │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 284. Peeking Iterator │ ├── README.md │ └── solution1.py ├── 287. Find the Duplicate Number │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 289. Game of Life │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 29. Divide Two Integers │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ └── solution2.py ├── 290. Word Pattern │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 292. Nim Game │ ├── README.md │ └── solution1.py ├── 293. Flip Game │ ├── .secret │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 295. Find Median from Data Stream │ ├── README.md │ └── solution1.py ├── 297. Serialize and Deserialize Binary Tree │ ├── README.md │ └── solution1.py ├── 299. Bulls and Cows │ ├── README.md │ └── solution1.py ├── 3. Longest Substring Without Repeating Characters │ ├── 1.png │ ├── 2.png │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ ├── solution3.py │ ├── solution4.md │ ├── solution4.py │ ├── solution5.md │ └── solution5.py ├── 30. Substring with Concatenation of All Words │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ └── solution2.py ├── 300. Longest Increasing Subsequence │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 301. Remove Invalid Parentheses │ ├── README.md │ └── solution1.py ├── 303. Range Sum Query - Immutable │ ├── README.md │ └── solution1.py ├── 304. Range Sum Query 2D - Immutable │ ├── README.md │ └── solution1.py ├── 306. Additive Number │ ├── README.md │ └── solution1.py ├── 307. Range Sum Query - Mutable │ ├── README.md │ └── solution1.py ├── 309. Best Time to Buy and Sell Stock with Cooldown │ ├── README.md │ └── solution1.py ├── 31. Next Permutation │ ├── 1.gif │ ├── README.md │ ├── solution1.md │ └── solution1.py ├── 310. Minimum Height Trees │ ├── README.md │ └── solution1.py ├── 312. Burst Balloons │ ├── README.md │ └── solution1.py ├── 313. Super Ugly Number │ ├── README.md │ └── solution1.py ├── 315. Count of Smaller Numbers After Self │ ├── README.md │ └── solution1.py ├── 316. Remove Duplicate Letters │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 318. Maximum Product of Word Lengths │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 319. Bulb Switcher │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 32. Longest Valid Parentheses │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 18.png │ ├── 19.png │ ├── 2.png │ ├── 20.png │ ├── 21.png │ ├── 22.png │ ├── 23.png │ ├── 24.png │ ├── 25.png │ ├── 26.png │ ├── 27.png │ ├── 28.png │ ├── 29.png │ ├── 3.png │ ├── 30.png │ ├── 31.png │ ├── 32.png │ ├── 33.png │ ├── 34.png │ ├── 35.png │ ├── 36.png │ ├── 37.png │ ├── 38.png │ ├── 39.png │ ├── 4.png │ ├── 40.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ ├── solution3.py │ ├── solution4.md │ └── solution4.py ├── 321. Create Maximum Number │ ├── README.md │ └── solution1.py ├── 322. Coin Change │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 324. Wiggle Sort II │ ├── README.md │ └── solution1.py ├── 326. Power of Three │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 327. Count of Range Sum │ ├── README.md │ └── solution1.py ├── 328. Odd Even Linked List │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 329. Longest Increasing Path in a Matrix │ ├── README.md │ └── solution1.py ├── 33. Search in Rotated Sorted Array │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ └── solution2.py ├── 330. Patching Array │ ├── README.md │ └── solution1.py ├── 331. Verify Preorder Serialization of a Binary Tree │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 332. Reconstruct Itinerary │ ├── README.md │ └── solution1.py ├── 334. Increasing Triplet Subsequence │ ├── README.md │ └── solution1.py ├── 335. Self Crossing │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 336. Palindrome Pairs │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 337. House Robber III │ ├── README.md │ ├── soluton1.py │ └── soluton2.py ├── 338. Counting Bits │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 339. Nested List Weight Sum │ ├── .secret │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 34. Find First and Last Position of Element in Sorted Array │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ └── solution3.py ├── 341. Flatten Nested List Iterator │ ├── README.md │ └── solution1.py ├── 342. Power of Four │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 343. Integer Break │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 344. Reverse String │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 345. Reverse Vowels of a String │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 346. Moving Average from Data Stream │ ├── .secret │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 347. Top K Frequent Elements │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 349. Intersection of Two Arrays │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 35. Search Insert Position │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ └── solution3.py ├── 350. Intersection of Two Arrays II │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 352. Data Stream as Disjoint Intervals │ ├── README.md │ └── solution1.py ├── 354. Russian Doll Envelopes │ ├── README.md │ └── solution1.py ├── 355. Design Twitter │ ├── README.md │ └── solution1.py ├── 357. Count Numbers with Unique Digits │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 359. Logger Rate Limiter │ ├── .secret │ ├── README.md │ └── solution1.py ├── 36. Valid Sudoku │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ └── solution2.py ├── 363. Max Sum of Rectangle No Larger Than K │ ├── README.md │ └── solution1.py ├── 365. Water and Jug Problem │ ├── README.md │ └── solution1.py ├── 367. Valid Perfect Square │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 368. Largest Divisible Subset │ ├── README.md │ └── solution1.py ├── 37. Sudoku Solver │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ └── solution3.py ├── 371. Sum of Two Integers │ ├── README.md │ └── solution1.py ├── 372. Super Pow │ ├── README.md │ └── solution1.py ├── 373. Find K Pairs with Smallest Sums │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 374. Guess Number Higher or Lower │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 375. Guess Number Higher or Lower II │ ├── README.md │ └── solution1.py ├── 376. Wiggle Subsequence │ ├── README.md │ └── solution1.py ├── 377. Combination Sum IV │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 378. Kth Smallest Element in a Sorted Matrix │ ├── README.md │ └── solution1.py ├── 38. Count and Say │ ├── README.md │ ├── solution1.md │ └── solution1.py ├── 380. Insert Delete GetRandom O(1) │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 381. Insert Delete GetRandom O(1) - Duplicates allowed │ ├── README.md │ └── solution1.py ├── 382. Linked List Random Node │ ├── README.md │ └── solution1.py ├── 383. Ransom Note │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 384. Shuffle an Array │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 385. Mini Parser │ ├── README.md │ └── solution1.py ├── 386. Lexicographical Numbers │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 387. First Unique Character in a String │ ├── README.md │ └── solution1.py ├── 388. Longest Absolute File Path │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 389. Find the Difference │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 39. Combination Sum │ ├── README.md │ ├── solution1.md │ └── solution1.py ├── 390. Elimination Game │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 391. Perfect Rectangle │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 392. Is Subsequence │ ├── README.md │ └── solution1.py ├── 393. UTF-8 Validation │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 394. Decode String │ ├── README.md │ └── solution1.py ├── 395. Longest Substring with At Least K Repeating Characters │ ├── README.md │ └── solution1.py ├── 396. Rotate Function │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 397. Integer Replacement │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 398. Random Pick Index │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 399. Evaluate Division │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 4. Median of Two Sorted Arrays │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ └── solution3.py ├── 40. Combination Sum II │ ├── README.md │ ├── solution1.md │ └── solution1.py ├── 400. Nth Digit │ ├── README.md │ └── solution1.py ├── 401. Binary Watch │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 402. Remove K Digits │ ├── README.md │ └── solution1.py ├── 403. Frog Jump │ ├── README.md │ └── solution1.py ├── 404. Sum of Left Leaves │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 405. Convert a Number to Hexadecimal │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 406. Queue Reconstruction by Height │ ├── README.md │ └── solution1.py ├── 407. Trapping Rain Water II │ ├── README.md │ └── solution1.py ├── 408. Valid Word Abbreviation │ ├── .secret │ ├── README.md │ └── solution1.py ├── 409. Longest Palindrome │ ├── README.md │ └── solution1.py ├── 41. First Missing Positive │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ └── solution2.py ├── 410. Split Array Largest Sum │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 412. Fizz Buzz │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ ├── solution4.py │ └── solution5.py ├── 413. Arithmetic Slices │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 414. Third Maximum Number │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 415. Add Strings │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 416. Partition Equal Subset Sum │ ├── README.md │ └── solution1.py ├── 417. Pacific Atlantic Water Flow │ ├── README.md │ └── solution1.py ├── 419. Battleships in a Board │ ├── README.md │ └── solution1.py ├── 42. Trapping Rain Water │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ ├── solution3.py │ ├── solution4.md │ └── solution4.py ├── 420. Strong Password Checker │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 421. Maximum XOR of Two Numbers in an Array │ ├── README.md │ └── solution1.py ├── 422. Valid Word Square │ ├── .secret │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 423. Reconstruct Original Digits from English │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 424. Longest Repeating Character Replacement │ ├── README.md │ └── solution1.py ├── 427. Construct Quad Tree │ ├── README.md │ └── solution1.py ├── 429. N-ary Tree Level Order Traversal │ ├── README.md │ └── solution1.py ├── 43. Multiply Strings │ ├── 1.jpg │ ├── 2.jpg │ ├── README.md │ ├── solution1.md │ └── solution1.py ├── 430. Flatten a Multilevel Doubly Linked List │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 432. All O`one Data Structure │ ├── README.md │ └── solution1.py ├── 433. Minimum Genetic Mutation │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 434. Number of Segments in a String │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 435. Non-overlapping Intervals │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 436. Find Right Interval │ ├── README.md │ └── solution1.py ├── 437. Path Sum III │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 438. Find All Anagrams in a String │ ├── README.md │ └── solution1.py ├── 44. Wildcard Matching │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 440. K-th Smallest in Lexicographical Order │ ├── README.md │ └── solution1.py ├── 441. Arranging Coins │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 442. Find All Duplicates in an Array │ ├── README.md │ └── solution1.py ├── 443. String Compression │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 445. Add Two Numbers II │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 446. Arithmetic Slices II - Subsequence │ ├── README.md │ └── solution1.py ├── 447. Number of Boomerangs │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 448. Find All Numbers Disappeared in an Array │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 449. Serialize and Deserialize BST │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 45. Jump Game II │ ├── README.md │ └── solution1.py ├── 450. Delete Node in a BST │ ├── README.md │ └── solution1.py ├── 451. Sort Characters By Frequency │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 452. Minimum Number of Arrows to Burst Balloons │ ├── README.md │ └── solution1.py ├── 453. Minimum Moves to Equal Array Elements │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 454. 4Sum II │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 455. Assign Cookies │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 456. 132 Pattern │ ├── README.md │ └── solution1.py ├── 457. Circular Array Loop │ ├── README.md │ └── solution1.py ├── 458. Poor Pigs │ ├── README.md │ └── solution1.py ├── 459. Repeated Substring Pattern │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 46. Permutations │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 460. LFU Cache │ ├── README.md │ └── solution1.py ├── 461. Hamming Distance │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 462. Minimum Moves to Equal Array Elements II │ ├── README.md │ └── solution1.py ├── 463. Island Perimeter │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 464. Can I Win │ ├── README.md │ └── solution1.py ├── 466. Count The Repetitions │ ├── README.md │ └── solution1.py ├── 467. Unique Substrings in Wraparound String │ ├── README.md │ └── solution1.py ├── 468. Validate IP Address │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 47. Permutations II │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 470. Implement Rand10() Using Rand7() │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 472. Concatenated Words │ ├── README.md │ └── solution1.py ├── 473. Matchsticks to Square │ ├── README.md │ └── solution1.py ├── 474. Ones and Zeroes │ ├── README.md │ └── solution1.py ├── 475. Heaters │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 476. Number Complement │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 477. Total Hamming Distance │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 478. Generate Random Point in a Circle │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 479. Largest Palindrome Product │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 48. Rotate Image │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 480. Sliding Window Median │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 481. Magical String │ ├── README.md │ └── solution1.py ├── 482. License Key Formatting │ ├── README.md │ └── solution1.py ├── 483. Smallest Good Base │ ├── README.md │ └── solution1.py ├── 485. Max Consecutive Ones │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 486. Predict the Winner │ ├── README.md │ └── solution1.py ├── 488. Zuma Game │ ├── README.md │ └── solution1.py ├── 49. Group Anagrams │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 491. Increasing Subsequences │ ├── README.md │ └── solution1.py ├── 492. Construct the Rectangle │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 493. Reverse Pairs │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 494. Target Sum │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 495. Teemo Attacking │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 496. Next Greater Element I │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 5. Longest Palindromic Substring │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ └── solution3.py ├── 50. Pow(x, n) │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 500. Keyboard Row │ ├── README.md │ └── solution1.py ├── 501. Find Mode in Binary Search Tree │ ├── README.md │ └── solution1.py ├── 502. IPO │ ├── README.md │ └── solution1.py ├── 504. Base 7 │ ├── README.md │ └── solution1.py ├── 506. Relative Ranks │ ├── README.md │ └── solution1.py ├── 507. Perfect Number │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 509. Fibonacci Number │ ├── README.md │ └── solution1.py ├── 51. N-Queens │ ├── README.md │ └── solution1.py ├── 511. Game Play Analysis I │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 512. Game Play Analysis II │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 514. Freedom Trail │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 517. Super Washing Machines │ ├── README.md │ └── solution1.py ├── 52. N-Queens II │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 520. Detect Capital │ ├── README.md │ └── solution1.py ├── 521. Longest Uncommon Subsequence I │ ├── README.md │ └── solution1.py ├── 523. Continuous Subarray Sum │ ├── README.md │ └── solution1.py ├── 53. Maximum Subarray │ ├── README.md │ └── solution1.py ├── 530. Minimum Absolute Difference in BST │ ├── README.md │ └── solution1.py ├── 532. K-diff Pairs in an Array │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 535. Encode and Decode TinyURL │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 538. Convert BST to Greater Tree │ ├── README.md │ └── solution1.py ├── 54. Spiral Matrix │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 541. Reverse String II │ ├── README.md │ └── solution1.py ├── 543. Diameter of Binary Tree │ ├── README.md │ └── solution1.py ├── 546. Remove Boxes │ ├── README.md │ └── solution1.py ├── 55. Jump Game │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 551. Student Attendance Record I │ ├── README.md │ └── solution1.py ├── 552. Student Attendance Record II │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 557. Reverse Words in a String III │ ├── README.md │ └── solution1.py ├── 559. Maximum Depth of N-ary Tree │ ├── README.md │ └── solution1.py ├── 56. Merge Intervals │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 561. Array Partition I │ ├── README.md │ └── solution1.py ├── 563. Binary Tree Tilt │ ├── README.md │ └── solution1.py ├── 564. Find the Closest Palindrome │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 566. Reshape the Matrix │ ├── README.md │ └── solution1.py ├── 57. Insert Interval │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 572. Subtree of Another Tree │ ├── README.md │ └── solution1.py ├── 575. Distribute Candies │ ├── README.md │ └── solution1.py ├── 577. Employee Bonus │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 58. Length of Last Word │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 581. Shortest Unsorted Continuous Subarray │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 584. Find Customer Referee │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 586. Customer Placing the Largest Number of Orders │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 587. Erect the Fence │ ├── README.md │ └── solution1.py ├── 589. N-ary Tree Preorder Traversal │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 59. Spiral Matrix II │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 590. N-ary Tree Postorder Traversal │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 591. Tag Validator │ ├── README.md │ └── solution1.py ├── 594. Longest Harmonious Subsequence │ ├── README.md │ └── solution1.py ├── 595. Big Countries │ ├── README.md │ └── solution1.sql ├── 596. Classes More Than 5 Students │ ├── README.md │ └── solution1.sql ├── 597. Friend Requests I: Overall Acceptance Rate │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 598. Range Addition II │ ├── README.md │ └── solution1.py ├── 599. Minimum Index Sum of Two Lists │ ├── README.md │ └── solution1.py ├── 6. ZigZag Conversion │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ ├── solution2.py │ ├── solution3.md │ └── solution3.py ├── 60. Permutation Sequence │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 603. Consecutive Available Seats │ ├── .secret │ ├── README.md │ └── solution1.sql ├── 605. Can Place Flowers │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 606. Construct String from Binary Tree │ ├── README.md │ └── solution1.py ├── 61. Rotate List │ ├── README.md │ └── solution1.py ├── 613. Shortest Distance in a Line │ ├── .secret │ ├── README.md │ ├── solution1.sql │ └── solution2.sql ├── 617. Merge Two Binary Trees │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 62. Unique Paths │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 620. Not Boring Movies │ ├── README.md │ └── solution1.sql ├── 627. Swap Salary │ ├── README.md │ └── solution1.sql ├── 628. Maximum Product of Three Numbers │ ├── README.md │ └── solution1.py ├── 63. Unique Paths II │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 633. Sum of Square Numbers │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 637. Average of Levels in Binary Tree │ ├── README.md │ └── solution1.py ├── 64. Minimum Path Sum │ ├── README.md │ └── solution1.py ├── 643. Maximum Average Subarray I │ ├── README.md │ └── solution1.py ├── 645. Set Mismatch │ ├── README.md │ └── solution1.py ├── 65. Valid Number │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 653. Two Sum IV - Input is a BST │ ├── README.md │ └── solution1.py ├── 654. Maximum Binary Tree │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 657. Robot Return to Origin │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 66. Plus One │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 661. Image Smoother │ ├── README.md │ └── solution1.py ├── 665. Non-decreasing Array │ ├── README.md │ └── solution1.py ├── 669. Trim a Binary Search Tree │ ├── README.md │ └── solution1.py ├── 67. Add Binary │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 671. Second Minimum Node In a Binary Tree │ ├── README.md │ └── solution1.py ├── 674. Longest Continuous Increasing Subsequence │ ├── README.md │ └── solution1.py ├── 68. Text Justification │ ├── README.md │ └── solution1.py ├── 680. Valid Palindrome II │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 682. Baseball Game │ ├── README.md │ └── solution1.py ├── 686. Repeated String Match │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 687. Longest Univalue Path │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 69. Sqrt(x) │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 690. Employee Importance │ ├── README.md │ └── solution1.py ├── 693. Binary Number with Alternating Bits │ ├── README.md │ └── solution1.py ├── 696. Count Binary Substrings │ ├── README.md │ └── solution1.py ├── 697. Degree of an Array │ ├── README.md │ └── solution1.py ├── 7. Reverse Integer │ ├── README.md │ ├── solution1.md │ ├── solution1.py │ ├── solution2.md │ └── solution2.py ├── 70. Climbing Stairs │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 700. Search in a Binary Search Tree │ ├── README.md │ └── solution1.py ├── 701. Insert into a Binary Search Tree │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 703. Kth Largest Element in a Stream │ ├── README.md │ └── solution1.py ├── 704. Binary Search │ ├── README.md │ └── solution1.py ├── 705. Design HashSet │ ├── README.md │ └── solution1.py ├── 706. Design HashMap │ ├── README.md │ └── solution1.py ├── 707. Design Linked List │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 709. To Lower Case │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 71. Simplify Path │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 717. 1-bit and 2-bit Characters │ ├── README.md │ └── solution1.py ├── 72. Edit Distance │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 720. Longest Word in Dictionary │ ├── README.md │ └── solution1.py ├── 724. Find Pivot Index │ ├── README.md │ └── solution1.py ├── 728. Self Dividing Numbers │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 73. Set Matrix Zeroes │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 732. My Calendar III │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 733. Flood Fill │ ├── README.md │ └── solution1.py ├── 74. Search a 2D Matrix │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 744. Find Smallest Letter Greater Than Target │ ├── README.md │ └── solution1.py ├── 746. Min Cost Climbing Stairs │ ├── README.md │ └── solution1.py ├── 747. Largest Number At Least Twice of Others │ ├── README.md │ └── solution1.py ├── 748. Shortest Completing Word │ ├── README.md │ └── solution1.py ├── 75. Sort Colors │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 76. Minimum Window Substring │ ├── README.md │ └── solution1.py ├── 760. Find Anagram Mappings │ ├── .secret │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 762. Prime Number of Set Bits in Binary Representation │ ├── README.md │ └── solution1.py ├── 763. Partition Labels │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 766. Toeplitz Matrix │ ├── README.md │ └── solution1.py ├── 77. Combinations │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 771. Jewels and Stones │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 773. Sliding Puzzle │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 779. K-th Symbol in Grammar │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 78. Subsets │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ ├── solution4.py │ └── solution5.py ├── 783. Minimum Distance Between BST Nodes │ ├── README.md │ └── solution1.py ├── 784. Letter Case Permutation │ ├── README.md │ └── solution1.py ├── 788. Rotated Digits │ ├── README.md │ └── solution1.py ├── 79. Word Search │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 796. Rotate String │ ├── README.md │ └── solution1.py ├── 797. All Paths From Source to Target │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 8. String to Integer (atoi) │ ├── README.md │ ├── solution1.md │ └── solution1.py ├── 80. Remove Duplicates from Sorted Array II │ ├── README.md │ └── solution1.py ├── 804. Unique Morse Code Words │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 806. Number of Lines To Write String │ ├── README.md │ └── solution1.py ├── 807. Max Increase to Keep City Skyline │ ├── README.md │ └── solution1.py ├── 81. Search in Rotated Sorted Array II │ ├── README.md │ └── solution1.py ├── 811. Subdomain Visit Count │ ├── README.md │ └── solution1.py ├── 812. Largest Triangle Area │ ├── README.md │ └── solution1.py ├── 814. Binary Tree Pruning │ ├── README.md │ └── solution1.py ├── 819. Most Common Word │ ├── README.md │ └── solution1.py ├── 82. Remove Duplicates from Sorted List II │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 821. Shortest Distance to a Character │ ├── README.md │ └── solution1.py ├── 824. Goat Latin │ ├── README.md │ └── solution1.py ├── 83. Remove Duplicates from Sorted List │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 830. Positions of Large Groups │ ├── README.md │ └── solution1.py ├── 832. Flipping an Image │ ├── README.md │ └── solution1.py ├── 836. Rectangle Overlap │ ├── README.md │ └── solution1.py ├── 84. Largest Rectangle in Histogram │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 840. Magic Squares In Grid │ ├── READMe.md │ ├── solution1.py │ └── solution2.py ├── 844. Backspace String Compare │ ├── README.md │ └── solution1.py ├── 849. Maximize Distance to Closest Person │ ├── README.md │ └── solution1.py ├── 85. Maximal Rectangle │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 852. Peak Index in a Mountain Array │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 859. Buddy Strings │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 86. Partition List │ ├── README.md │ └── solution1.py ├── 860. Lemonade Change │ ├── README.md │ └── solution1.py ├── 861. Score After Flipping Matrix │ ├── README.md │ └── solution1.py ├── 862. Shortest Subarray with Sum at Least K │ ├── README.md │ └── solution1.py ├── 867. Transpose Matrix │ ├── README.md │ └── solution1.py ├── 868. Binary Gap │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 87. Scramble String │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 872. Leaf-Similar Trees │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 874. Walking Robot Simulation │ ├── README.md │ └── solution1.py ├── 876. Middle of the Linked List │ ├── README.md │ └── solution1.py ├── 88. Merge Sorted Array │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 880. Decoded String at Index │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 883. Projection Area of 3D Shapes │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 884. Uncommon Words from Two Sentences │ ├── README.md │ └── solution1.py ├── 888. Fair Candy Swap │ ├── README.md │ └── solution1.py ├── 89. Gray Code │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 890. Find and Replace Pattern │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 892. Surface Area of 3D Shapes │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 893. Groups of Special-Equivalent Strings │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 894. All Possible Full Binary Trees │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 895. Maximum Frequency Stack │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 896. Monotonic Array │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 897. Increasing Order Search Tree │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 9. Palindrome Number │ ├── README.md │ ├── solution1.md │ └── solution1.py ├── 90. Subsets II │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 905. Sort Array By Parity │ ├── README.md │ └── solution1.py ├── 908. Smallest Range I │ ├── README.md │ └── solution1.py ├── 91. Decode Ways │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 914. X of a Kind in a Deck of Cards │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 917. Reverse Only Letters │ ├── README.md │ └── solution1.py ├── 92. Reverse Linked List II │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 921. Minimum Add to Make Parentheses Valid │ ├── README.md │ └── solution1.py ├── 922. Sort Array By Parity II │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 925. Long Pressed Name │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 929. Unique Email Addresses │ ├── README.md │ └── solution1.py ├── 93. Restore IP Addresses │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 933. Number of Recent Calls │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 937. Reorder Data in Log Files │ ├── README.md │ └── solution1.py ├── 938. Range Sum of BST │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 94. Binary Tree Inorder Traversal │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 941. Valid Mountain Array │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 942. DI String Match │ ├── README.md │ └── solution1.py ├── 944. Delete Columns to Make Sorted │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 949. Largest Time for Given Digits │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ ├── solution4.py │ └── solution5.py ├── 95. Unique Binary Search Trees II │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 950. Reveal Cards In Increasing Order │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 953. Verifying an Alien Dictionary │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 96. Unique Binary Search Trees │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 961. N-Repeated Element in Size 2N Array │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 965. Univalued Binary Tree │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 97. Interleaving String │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ ├── solution3.py │ └── solution4.py ├── 970. Powerful Integers │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 976. Largest Perimeter Triangle │ ├── README.md │ └── solution1.py ├── 977. Squares of a Sorted Array │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 98. Validate Binary Search Tree │ ├── README.md │ └── solution1.py ├── 980. Unique Paths III │ ├── README.md │ └── solution1.py ├── 985. Sum of Even Numbers After Queries │ ├── README.md │ └── solution1.py ├── 989. Add to Array-Form of Integer │ ├── README.md │ └── solution1.py ├── 99. Recover Binary Search Tree │ ├── README.md │ ├── solution1.py │ └── solution2.py ├── 993. Cousins in Binary Tree │ ├── README.md │ └── solution1.py ├── 997. Find the Town Judge │ ├── README.md │ ├── solution1.py │ ├── solution2.py │ └── solution3.py ├── 999. Available Captures for Rook │ ├── README.md │ └── solution1.py └── README.md ├── README.md ├── System Design ├── Glossary │ ├── Basics │ │ └── README.md │ ├── CAP Theorem │ │ ├── 1.png │ │ ├── README.md │ │ └── README_SHORT.md │ ├── Caching │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── README.md │ │ └── README_SHORT.md │ ├── Consistent Hashing │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── README.md │ │ └── README_SHORT.md │ ├── Data Partitioning │ │ ├── README.md │ │ └── README_SHORT.md │ ├── Indexes │ │ ├── 1.svg │ │ ├── README.md │ │ └── README_SHORT.md │ ├── Key Characteristics of Distributed Systems │ │ ├── 1.png │ │ ├── README.md │ │ └── README_SHORT.md │ ├── Load Balancing │ │ ├── 1.svg │ │ ├── 2.png │ │ ├── 3.svg │ │ └── README.md │ ├── Long-Polling vs WebSockets vs Server-Sent Events │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── README.md │ │ └── README_SHORT.md │ ├── Off-line processing │ │ ├── 1.png │ │ ├── 2.png │ │ └── README.md │ ├── Platform layer │ │ ├── 1.png │ │ └── README.md │ ├── Proxies │ │ ├── 1.png │ │ ├── README.md │ │ └── README_SHORT.md │ ├── Queues │ │ ├── 1.png │ │ ├── README.md │ │ └── README_SHORT.md │ ├── README.md │ ├── Redundancy and Replication │ │ ├── 1.png │ │ ├── README.md │ │ └── README_SHORT.md │ └── SQL vs. NoSQL │ │ ├── README.md │ │ └── README_SHORT.md ├── Problems │ ├── API Rate Limiter │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ └── README.md │ ├── Basics │ │ └── README.md │ ├── Dropbox │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── README.md │ ├── Facebook Messenger │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ └── README.md │ ├── Facebook Newsfeed │ │ ├── 1.png │ │ ├── 2.png │ │ └── README.md │ ├── Instagram │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── README.md │ ├── Pastebin │ │ ├── 2.png │ │ ├── 3.png │ │ └── README.md │ ├── README.md │ ├── Ticketmaster │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ └── README.md │ ├── Twitter Search │ │ ├── 1.png │ │ ├── 2.png │ │ └── README.md │ ├── Twitter │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── README.md │ ├── Typeahead Suggestion │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── README.md │ ├── URL Shortening │ │ ├── 1.svg │ │ ├── 2_1.png │ │ ├── 2_2.png │ │ ├── 2_3.png │ │ ├── 2_4.png │ │ ├── 2_5.png │ │ ├── 2_6.png │ │ ├── 2_7.png │ │ ├── 2_8.png │ │ ├── 2_9.png │ │ ├── 3.png │ │ ├── 4_1.png │ │ ├── 4_10.png │ │ ├── 4_11.png │ │ ├── 4_2.png │ │ ├── 4_3.png │ │ ├── 4_4.png │ │ ├── 4_5.png │ │ ├── 4_6.png │ │ ├── 4_7.png │ │ ├── 4_8.png │ │ ├── 4_9.png │ │ ├── 5.png │ │ ├── README.md │ │ └── README_SHORT.md │ ├── Uber backend │ │ ├── 1.png │ │ └── README.md │ ├── Web Crawler │ │ ├── 1.png │ │ ├── 2.png │ │ └── README.md │ ├── Yelp or Nearby Friends │ │ ├── 1.jpeg │ │ ├── 2.png │ │ ├── 3.png │ │ └── README.md │ └── YouTube or Netflix │ │ ├── 1.png │ │ ├── 2.png │ │ └── README.md └── README.md └── tools ├── generate_readme.py └── generate_secret.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/.gitignore -------------------------------------------------------------------------------- /Algorithms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Algorithms/README.md -------------------------------------------------------------------------------- /Behavioral interview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Behavioral interview/README.md -------------------------------------------------------------------------------- /Behavioral interview/Set 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Behavioral interview/Set 1/README.md -------------------------------------------------------------------------------- /Behavioral interview/Set 10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Behavioral interview/Set 10/README.md -------------------------------------------------------------------------------- /Behavioral interview/Set 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Behavioral interview/Set 2/README.md -------------------------------------------------------------------------------- /Behavioral interview/Set 3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Behavioral interview/Set 3/README.md -------------------------------------------------------------------------------- /Behavioral interview/Set 8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Behavioral interview/Set 8/README.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/README.md -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution1.cpp -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution1.java -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution1.md -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution1.py -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution2.cpp -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution2.java -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution2.md -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution2.py -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution3.cpp -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution3.java -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution3.md -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution3.py -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution4.cpp -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution4.java -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution4.md -------------------------------------------------------------------------------- /Leetcode/1. Two Sum/solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1. Two Sum/solution4.py -------------------------------------------------------------------------------- /Leetcode/100. Same Tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/100. Same Tree/README.md -------------------------------------------------------------------------------- /Leetcode/100. Same Tree/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/100. Same Tree/solution1.py -------------------------------------------------------------------------------- /Leetcode/100. Same Tree/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/100. Same Tree/solution2.py -------------------------------------------------------------------------------- /Leetcode/101. Symmetric Tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/101. Symmetric Tree/README.md -------------------------------------------------------------------------------- /Leetcode/101. Symmetric Tree/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/101. Symmetric Tree/solution1.py -------------------------------------------------------------------------------- /Leetcode/101. Symmetric Tree/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/101. Symmetric Tree/solution2.py -------------------------------------------------------------------------------- /Leetcode/1025. Divisor Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1025. Divisor Game/README.md -------------------------------------------------------------------------------- /Leetcode/1025. Divisor Game/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1025. Divisor Game/solution1.py -------------------------------------------------------------------------------- /Leetcode/1025. Divisor Game/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1025. Divisor Game/solution2.py -------------------------------------------------------------------------------- /Leetcode/1037. Valid Boomerang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1037. Valid Boomerang/README.md -------------------------------------------------------------------------------- /Leetcode/1046. Last Stone Weight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1046. Last Stone Weight/README.md -------------------------------------------------------------------------------- /Leetcode/1051. Height Checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1051. Height Checker/README.md -------------------------------------------------------------------------------- /Leetcode/1051. Height Checker/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1051. Height Checker/solution1.py -------------------------------------------------------------------------------- /Leetcode/1082. Sales Analysis I/.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1082. Sales Analysis I/.secret -------------------------------------------------------------------------------- /Leetcode/1082. Sales Analysis I/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1082. Sales Analysis I/README.md -------------------------------------------------------------------------------- /Leetcode/1086. High Five/.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1086. High Five/.secret -------------------------------------------------------------------------------- /Leetcode/1086. High Five/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1086. High Five/README.md -------------------------------------------------------------------------------- /Leetcode/1086. High Five/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1086. High Five/solution1.py -------------------------------------------------------------------------------- /Leetcode/1086. High Five/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1086. High Five/solution2.py -------------------------------------------------------------------------------- /Leetcode/1089. Duplicate Zeros/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1089. Duplicate Zeros/README.md -------------------------------------------------------------------------------- /Leetcode/1114. Print in Order/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1114. Print in Order/README.md -------------------------------------------------------------------------------- /Leetcode/1114. Print in Order/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1114. Print in Order/solution1.py -------------------------------------------------------------------------------- /Leetcode/1114. Print in Order/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1114. Print in Order/solution2.py -------------------------------------------------------------------------------- /Leetcode/112. Path Sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/112. Path Sum/README.md -------------------------------------------------------------------------------- /Leetcode/112. Path Sum/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/112. Path Sum/solution1.py -------------------------------------------------------------------------------- /Leetcode/113. Path Sum II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/113. Path Sum II/README.md -------------------------------------------------------------------------------- /Leetcode/113. Path Sum II/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/113. Path Sum II/solution1.py -------------------------------------------------------------------------------- /Leetcode/1134. Armstrong Number/.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1134. Armstrong Number/.secret -------------------------------------------------------------------------------- /Leetcode/1134. Armstrong Number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1134. Armstrong Number/README.md -------------------------------------------------------------------------------- /Leetcode/1148. Article Views I/.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1148. Article Views I/.secret -------------------------------------------------------------------------------- /Leetcode/1148. Article Views I/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1148. Article Views I/README.md -------------------------------------------------------------------------------- /Leetcode/1154. Day of the Year/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1154. Day of the Year/README.md -------------------------------------------------------------------------------- /Leetcode/1165. Single-Row Keyboard/.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1165. Single-Row Keyboard/.secret -------------------------------------------------------------------------------- /Leetcode/118. Pascal's Triangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/118. Pascal's Triangle/README.md -------------------------------------------------------------------------------- /Leetcode/1185. Day of the Week/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1185. Day of the Week/README.md -------------------------------------------------------------------------------- /Leetcode/12. Integer to Roman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/12. Integer to Roman/README.md -------------------------------------------------------------------------------- /Leetcode/12. Integer to Roman/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/12. Integer to Roman/solution1.md -------------------------------------------------------------------------------- /Leetcode/12. Integer to Roman/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/12. Integer to Roman/solution1.py -------------------------------------------------------------------------------- /Leetcode/12. Integer to Roman/solution2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/12. Integer to Roman/solution2.md -------------------------------------------------------------------------------- /Leetcode/12. Integer to Roman/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/12. Integer to Roman/solution2.py -------------------------------------------------------------------------------- /Leetcode/120. Triangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/120. Triangle/README.md -------------------------------------------------------------------------------- /Leetcode/120. Triangle/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/120. Triangle/solution1.py -------------------------------------------------------------------------------- /Leetcode/120. Triangle/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/120. Triangle/solution2.py -------------------------------------------------------------------------------- /Leetcode/1217. Play with Chips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1217. Play with Chips/README.md -------------------------------------------------------------------------------- /Leetcode/125. Valid Palindrome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/125. Valid Palindrome/README.md -------------------------------------------------------------------------------- /Leetcode/126. Word Ladder II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/126. Word Ladder II/README.md -------------------------------------------------------------------------------- /Leetcode/126. Word Ladder II/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/126. Word Ladder II/solution1.py -------------------------------------------------------------------------------- /Leetcode/126. Word Ladder II/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/126. Word Ladder II/solution2.py -------------------------------------------------------------------------------- /Leetcode/126. Word Ladder II/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/126. Word Ladder II/solution3.py -------------------------------------------------------------------------------- /Leetcode/126. Word Ladder II/solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/126. Word Ladder II/solution4.py -------------------------------------------------------------------------------- /Leetcode/1260. Shift 2D Grid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1260. Shift 2D Grid/README.md -------------------------------------------------------------------------------- /Leetcode/1260. Shift 2D Grid/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1260. Shift 2D Grid/solution1.py -------------------------------------------------------------------------------- /Leetcode/1260. Shift 2D Grid/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1260. Shift 2D Grid/solution2.py -------------------------------------------------------------------------------- /Leetcode/127. Word Ladder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/127. Word Ladder/README.md -------------------------------------------------------------------------------- /Leetcode/127. Word Ladder/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/127. Word Ladder/solution1.py -------------------------------------------------------------------------------- /Leetcode/127. Word Ladder/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/127. Word Ladder/solution2.py -------------------------------------------------------------------------------- /Leetcode/13. Roman to Integer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/13. Roman to Integer/README.md -------------------------------------------------------------------------------- /Leetcode/13. Roman to Integer/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/13. Roman to Integer/solution1.md -------------------------------------------------------------------------------- /Leetcode/13. Roman to Integer/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/13. Roman to Integer/solution1.py -------------------------------------------------------------------------------- /Leetcode/130. Surrounded Regions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/130. Surrounded Regions/README.md -------------------------------------------------------------------------------- /Leetcode/1303. Find the Team Size/.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1303. Find the Team Size/.secret -------------------------------------------------------------------------------- /Leetcode/1314. Matrix Block Sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1314. Matrix Block Sum/README.md -------------------------------------------------------------------------------- /Leetcode/1323. Maximum 69 Number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1323. Maximum 69 Number/README.md -------------------------------------------------------------------------------- /Leetcode/133. Clone Graph/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/133. Clone Graph/README.md -------------------------------------------------------------------------------- /Leetcode/133. Clone Graph/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/133. Clone Graph/solution1.py -------------------------------------------------------------------------------- /Leetcode/133. Clone Graph/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/133. Clone Graph/solution2.py -------------------------------------------------------------------------------- /Leetcode/133. Clone Graph/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/133. Clone Graph/solution3.py -------------------------------------------------------------------------------- /Leetcode/134. Gas Station/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/134. Gas Station/README.md -------------------------------------------------------------------------------- /Leetcode/134. Gas Station/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/134. Gas Station/solution1.py -------------------------------------------------------------------------------- /Leetcode/135. Candy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/135. Candy/README.md -------------------------------------------------------------------------------- /Leetcode/135. Candy/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/135. Candy/solution1.py -------------------------------------------------------------------------------- /Leetcode/135. Candy/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/135. Candy/solution2.py -------------------------------------------------------------------------------- /Leetcode/136. Single Number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/136. Single Number/README.md -------------------------------------------------------------------------------- /Leetcode/136. Single Number/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/136. Single Number/solution1.py -------------------------------------------------------------------------------- /Leetcode/136. Single Number/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/136. Single Number/solution2.py -------------------------------------------------------------------------------- /Leetcode/136. Single Number/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/136. Single Number/solution3.py -------------------------------------------------------------------------------- /Leetcode/136. Single Number/solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/136. Single Number/solution4.py -------------------------------------------------------------------------------- /Leetcode/136. Single Number/solution5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/136. Single Number/solution5.py -------------------------------------------------------------------------------- /Leetcode/137. Single Number II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/137. Single Number II/README.md -------------------------------------------------------------------------------- /Leetcode/139. Word Break/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/139. Word Break/README.md -------------------------------------------------------------------------------- /Leetcode/139. Word Break/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/139. Word Break/solution1.py -------------------------------------------------------------------------------- /Leetcode/14. Longest Common Prefix/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/14. Longest Common Prefix/1.png -------------------------------------------------------------------------------- /Leetcode/14. Longest Common Prefix/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/14. Longest Common Prefix/2.png -------------------------------------------------------------------------------- /Leetcode/14. Longest Common Prefix/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/14. Longest Common Prefix/3.png -------------------------------------------------------------------------------- /Leetcode/14. Longest Common Prefix/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/14. Longest Common Prefix/4.png -------------------------------------------------------------------------------- /Leetcode/140. Word Break II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/140. Word Break II/README.md -------------------------------------------------------------------------------- /Leetcode/140. Word Break II/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/140. Word Break II/solution1.py -------------------------------------------------------------------------------- /Leetcode/140. Word Break II/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/140. Word Break II/solution2.py -------------------------------------------------------------------------------- /Leetcode/1402. Reducing Dishes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1402. Reducing Dishes/README.md -------------------------------------------------------------------------------- /Leetcode/1407. Top Travellers/.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1407. Top Travellers/.secret -------------------------------------------------------------------------------- /Leetcode/1407. Top Travellers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1407. Top Travellers/README.md -------------------------------------------------------------------------------- /Leetcode/141. Linked List Cycle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/141. Linked List Cycle/README.md -------------------------------------------------------------------------------- /Leetcode/143. Reorder List/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/143. Reorder List/README.md -------------------------------------------------------------------------------- /Leetcode/143. Reorder List/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/143. Reorder List/solution1.py -------------------------------------------------------------------------------- /Leetcode/143. Reorder List/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/143. Reorder List/solution2.py -------------------------------------------------------------------------------- /Leetcode/1436. Destination City/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1436. Destination City/README.md -------------------------------------------------------------------------------- /Leetcode/146. LRU Cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/146. LRU Cache/README.md -------------------------------------------------------------------------------- /Leetcode/146. LRU Cache/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/146. LRU Cache/solution1.py -------------------------------------------------------------------------------- /Leetcode/146. LRU Cache/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/146. LRU Cache/solution2.py -------------------------------------------------------------------------------- /Leetcode/146. LRU Cache/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/146. LRU Cache/solution3.py -------------------------------------------------------------------------------- /Leetcode/1463. Cherry Pickup II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1463. Cherry Pickup II/README.md -------------------------------------------------------------------------------- /Leetcode/1470. Shuffle the Array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1470. Shuffle the Array/README.md -------------------------------------------------------------------------------- /Leetcode/148. Sort List/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/148. Sort List/README.md -------------------------------------------------------------------------------- /Leetcode/148. Sort List/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/148. Sort List/solution1.py -------------------------------------------------------------------------------- /Leetcode/1496. Path Crossing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1496. Path Crossing/README.md -------------------------------------------------------------------------------- /Leetcode/1496. Path Crossing/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1496. Path Crossing/solution1.py -------------------------------------------------------------------------------- /Leetcode/15. 3Sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/15. 3Sum/README.md -------------------------------------------------------------------------------- /Leetcode/15. 3Sum/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/15. 3Sum/solution1.md -------------------------------------------------------------------------------- /Leetcode/15. 3Sum/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/15. 3Sum/solution1.py -------------------------------------------------------------------------------- /Leetcode/15. 3Sum/solution2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/15. 3Sum/solution2.md -------------------------------------------------------------------------------- /Leetcode/15. 3Sum/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/15. 3Sum/solution2.py -------------------------------------------------------------------------------- /Leetcode/15. 3Sum/solution3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/15. 3Sum/solution3.md -------------------------------------------------------------------------------- /Leetcode/15. 3Sum/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/15. 3Sum/solution3.py -------------------------------------------------------------------------------- /Leetcode/15. 3Sum/solution4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/15. 3Sum/solution4.md -------------------------------------------------------------------------------- /Leetcode/15. 3Sum/solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/15. 3Sum/solution4.py -------------------------------------------------------------------------------- /Leetcode/15. 3Sum/solution5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/15. 3Sum/solution5.md -------------------------------------------------------------------------------- /Leetcode/15. 3Sum/solution5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/15. 3Sum/solution5.py -------------------------------------------------------------------------------- /Leetcode/15. 3Sum/solution6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/15. 3Sum/solution6.md -------------------------------------------------------------------------------- /Leetcode/15. 3Sum/solution6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/15. 3Sum/solution6.py -------------------------------------------------------------------------------- /Leetcode/1507. Reformat Date/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1507. Reformat Date/README.md -------------------------------------------------------------------------------- /Leetcode/1507. Reformat Date/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1507. Reformat Date/solution1.py -------------------------------------------------------------------------------- /Leetcode/1518. Water Bottles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1518. Water Bottles/README.md -------------------------------------------------------------------------------- /Leetcode/1518. Water Bottles/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1518. Water Bottles/solution1.py -------------------------------------------------------------------------------- /Leetcode/1518. Water Bottles/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1518. Water Bottles/solution2.py -------------------------------------------------------------------------------- /Leetcode/1518. Water Bottles/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1518. Water Bottles/solution3.py -------------------------------------------------------------------------------- /Leetcode/1528. Shuffle String/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1528. Shuffle String/README.md -------------------------------------------------------------------------------- /Leetcode/1528. Shuffle String/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1528. Shuffle String/solution1.py -------------------------------------------------------------------------------- /Leetcode/1529. Bulb Switcher IV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1529. Bulb Switcher IV/README.md -------------------------------------------------------------------------------- /Leetcode/155. Min Stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/155. Min Stack/README.md -------------------------------------------------------------------------------- /Leetcode/155. Min Stack/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/155. Min Stack/solution1.py -------------------------------------------------------------------------------- /Leetcode/155. Min Stack/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/155. Min Stack/solution2.py -------------------------------------------------------------------------------- /Leetcode/1571. Warehouse Manager/.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1571. Warehouse Manager/.secret -------------------------------------------------------------------------------- /Leetcode/1571. Warehouse Manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/1571. Warehouse Manager/README.md -------------------------------------------------------------------------------- /Leetcode/16. 3Sum Closest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/16. 3Sum Closest/README.md -------------------------------------------------------------------------------- /Leetcode/16. 3Sum Closest/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/16. 3Sum Closest/solution1.md -------------------------------------------------------------------------------- /Leetcode/16. 3Sum Closest/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/16. 3Sum Closest/solution1.py -------------------------------------------------------------------------------- /Leetcode/16. 3Sum Closest/solution2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/16. 3Sum Closest/solution2.md -------------------------------------------------------------------------------- /Leetcode/16. 3Sum Closest/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/16. 3Sum Closest/solution2.py -------------------------------------------------------------------------------- /Leetcode/162. Find Peak Element/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/162. Find Peak Element/README.md -------------------------------------------------------------------------------- /Leetcode/164. Maximum Gap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/164. Maximum Gap/README.md -------------------------------------------------------------------------------- /Leetcode/164. Maximum Gap/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/164. Maximum Gap/solution1.py -------------------------------------------------------------------------------- /Leetcode/169. Majority Element/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/169. Majority Element/README.md -------------------------------------------------------------------------------- /Leetcode/174. Dungeon Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/174. Dungeon Game/README.md -------------------------------------------------------------------------------- /Leetcode/174. Dungeon Game/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/174. Dungeon Game/solution1.py -------------------------------------------------------------------------------- /Leetcode/175. Combine Two Tables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/175. Combine Two Tables/README.md -------------------------------------------------------------------------------- /Leetcode/177. Nth Highest Salary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/177. Nth Highest Salary/README.md -------------------------------------------------------------------------------- /Leetcode/178. Rank Scores/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/178. Rank Scores/README.md -------------------------------------------------------------------------------- /Leetcode/178. Rank Scores/solution1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/178. Rank Scores/solution1.sql -------------------------------------------------------------------------------- /Leetcode/179. Largest Number/REAMDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/179. Largest Number/REAMDE.md -------------------------------------------------------------------------------- /Leetcode/179. Largest Number/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/179. Largest Number/solution1.py -------------------------------------------------------------------------------- /Leetcode/18. 4Sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/18. 4Sum/README.md -------------------------------------------------------------------------------- /Leetcode/18. 4Sum/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/18. 4Sum/solution1.md -------------------------------------------------------------------------------- /Leetcode/18. 4Sum/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/18. 4Sum/solution1.py -------------------------------------------------------------------------------- /Leetcode/18. 4Sum/solution2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/18. 4Sum/solution2.md -------------------------------------------------------------------------------- /Leetcode/18. 4Sum/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/18. 4Sum/solution2.py -------------------------------------------------------------------------------- /Leetcode/18. 4Sum/solution3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/18. 4Sum/solution3.md -------------------------------------------------------------------------------- /Leetcode/18. 4Sum/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/18. 4Sum/solution3.py -------------------------------------------------------------------------------- /Leetcode/18. 4Sum/solution4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/18. 4Sum/solution4.md -------------------------------------------------------------------------------- /Leetcode/18. 4Sum/solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/18. 4Sum/solution4.py -------------------------------------------------------------------------------- /Leetcode/182. Duplicate Emails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/182. Duplicate Emails/README.md -------------------------------------------------------------------------------- /Leetcode/189. Rotate Array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/189. Rotate Array/README.md -------------------------------------------------------------------------------- /Leetcode/189. Rotate Array/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/189. Rotate Array/solution1.py -------------------------------------------------------------------------------- /Leetcode/189. Rotate Array/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/189. Rotate Array/solution2.py -------------------------------------------------------------------------------- /Leetcode/190. Reverse Bits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/190. Reverse Bits/README.md -------------------------------------------------------------------------------- /Leetcode/190. Reverse Bits/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/190. Reverse Bits/solution1.py -------------------------------------------------------------------------------- /Leetcode/190. Reverse Bits/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/190. Reverse Bits/solution2.py -------------------------------------------------------------------------------- /Leetcode/190. Reverse Bits/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/190. Reverse Bits/solution3.py -------------------------------------------------------------------------------- /Leetcode/191. Number of 1 Bits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/191. Number of 1 Bits/README.md -------------------------------------------------------------------------------- /Leetcode/192. Word Frequency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/192. Word Frequency/README.md -------------------------------------------------------------------------------- /Leetcode/192. Word Frequency/solution1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/192. Word Frequency/solution1.sh -------------------------------------------------------------------------------- /Leetcode/194. Transpose File/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/194. Transpose File/README.md -------------------------------------------------------------------------------- /Leetcode/194. Transpose File/solution1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/194. Transpose File/solution1.sh -------------------------------------------------------------------------------- /Leetcode/194. Transpose File/solution2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/194. Transpose File/solution2.sh -------------------------------------------------------------------------------- /Leetcode/195. Tenth Line/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/195. Tenth Line/README.md -------------------------------------------------------------------------------- /Leetcode/195. Tenth Line/solution1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/195. Tenth Line/solution1.sh -------------------------------------------------------------------------------- /Leetcode/195. Tenth Line/solution2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/195. Tenth Line/solution2.sh -------------------------------------------------------------------------------- /Leetcode/197. Rising Temperature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/197. Rising Temperature/README.md -------------------------------------------------------------------------------- /Leetcode/198. House Robber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/198. House Robber/README.md -------------------------------------------------------------------------------- /Leetcode/198. House Robber/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/198. House Robber/solution1.py -------------------------------------------------------------------------------- /Leetcode/2. Add Two Numbers/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/2. Add Two Numbers/1.svg -------------------------------------------------------------------------------- /Leetcode/2. Add Two Numbers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/2. Add Two Numbers/README.md -------------------------------------------------------------------------------- /Leetcode/2. Add Two Numbers/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/2. Add Two Numbers/solution1.md -------------------------------------------------------------------------------- /Leetcode/2. Add Two Numbers/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/2. Add Two Numbers/solution1.py -------------------------------------------------------------------------------- /Leetcode/2. Add Two Numbers/solution2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/2. Add Two Numbers/solution2.md -------------------------------------------------------------------------------- /Leetcode/2. Add Two Numbers/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/2. Add Two Numbers/solution2.py -------------------------------------------------------------------------------- /Leetcode/2. Add Two Numbers/solution3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/2. Add Two Numbers/solution3.md -------------------------------------------------------------------------------- /Leetcode/2. Add Two Numbers/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/2. Add Two Numbers/solution3.py -------------------------------------------------------------------------------- /Leetcode/2. Add Two Numbers/solution4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/2. Add Two Numbers/solution4.md -------------------------------------------------------------------------------- /Leetcode/2. Add Two Numbers/solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/2. Add Two Numbers/solution4.py -------------------------------------------------------------------------------- /Leetcode/2. Add Two Numbers/solution5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/2. Add Two Numbers/solution5.md -------------------------------------------------------------------------------- /Leetcode/2. Add Two Numbers/solution5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/2. Add Two Numbers/solution5.py -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/1.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/10.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/11.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/12.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/13.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/14.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/15.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/16.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/17.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/18.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/2.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/3.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/4.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/5.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/6.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/7.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/8.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/9.png -------------------------------------------------------------------------------- /Leetcode/20. Valid Parentheses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/20. Valid Parentheses/README.md -------------------------------------------------------------------------------- /Leetcode/200. Number of Islands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/200. Number of Islands/README.md -------------------------------------------------------------------------------- /Leetcode/202. Happy Number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/202. Happy Number/README.md -------------------------------------------------------------------------------- /Leetcode/202. Happy Number/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/202. Happy Number/solution1.py -------------------------------------------------------------------------------- /Leetcode/204. Count Primes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/204. Count Primes/README.md -------------------------------------------------------------------------------- /Leetcode/204. Count Primes/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/204. Count Primes/solution1.py -------------------------------------------------------------------------------- /Leetcode/204. Count Primes/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/204. Count Primes/solution2.py -------------------------------------------------------------------------------- /Leetcode/204. Count Primes/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/204. Count Primes/solution3.py -------------------------------------------------------------------------------- /Leetcode/204. Count Primes/solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/204. Count Primes/solution4.py -------------------------------------------------------------------------------- /Leetcode/205. Isomorphic Strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/205. Isomorphic Strings/README.md -------------------------------------------------------------------------------- /Leetcode/207. Course Schedule/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/207. Course Schedule/README.md -------------------------------------------------------------------------------- /Leetcode/207. Course Schedule/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/207. Course Schedule/solution1.py -------------------------------------------------------------------------------- /Leetcode/207. Course Schedule/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/207. Course Schedule/solution2.py -------------------------------------------------------------------------------- /Leetcode/210. Course Schedule II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/210. Course Schedule II/README.md -------------------------------------------------------------------------------- /Leetcode/212. Word Search II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/212. Word Search II/README.md -------------------------------------------------------------------------------- /Leetcode/212. Word Search II/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/212. Word Search II/solution1.py -------------------------------------------------------------------------------- /Leetcode/213. House Robber II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/213. House Robber II/README.md -------------------------------------------------------------------------------- /Leetcode/213. House Robber II/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/213. House Robber II/solution1.py -------------------------------------------------------------------------------- /Leetcode/217. Contains Duplicate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/217. Contains Duplicate/README.md -------------------------------------------------------------------------------- /Leetcode/22. Generate Parentheses/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/22. Generate Parentheses/1.png -------------------------------------------------------------------------------- /Leetcode/22. Generate Parentheses/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/22. Generate Parentheses/2.png -------------------------------------------------------------------------------- /Leetcode/22. Generate Parentheses/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/22. Generate Parentheses/3.png -------------------------------------------------------------------------------- /Leetcode/221. Maximal Square/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/221. Maximal Square/README.md -------------------------------------------------------------------------------- /Leetcode/221. Maximal Square/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/221. Maximal Square/solution1.py -------------------------------------------------------------------------------- /Leetcode/223. Rectangle Area/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/223. Rectangle Area/README.md -------------------------------------------------------------------------------- /Leetcode/223. Rectangle Area/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/223. Rectangle Area/solution1.py -------------------------------------------------------------------------------- /Leetcode/223. Rectangle Area/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/223. Rectangle Area/solution2.py -------------------------------------------------------------------------------- /Leetcode/224. Basic Calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/224. Basic Calculator/README.md -------------------------------------------------------------------------------- /Leetcode/226. Invert Binary Tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/226. Invert Binary Tree/README.md -------------------------------------------------------------------------------- /Leetcode/228. Summary Ranges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/228. Summary Ranges/README.md -------------------------------------------------------------------------------- /Leetcode/228. Summary Ranges/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/228. Summary Ranges/solution1.py -------------------------------------------------------------------------------- /Leetcode/23. Merge k Sorted Lists/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/23. Merge k Sorted Lists/1.png -------------------------------------------------------------------------------- /Leetcode/23. Merge k Sorted Lists/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/23. Merge k Sorted Lists/10.png -------------------------------------------------------------------------------- /Leetcode/23. Merge k Sorted Lists/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/23. Merge k Sorted Lists/11.png -------------------------------------------------------------------------------- /Leetcode/23. Merge k Sorted Lists/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/23. Merge k Sorted Lists/12.png -------------------------------------------------------------------------------- /Leetcode/23. Merge k Sorted Lists/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/23. Merge k Sorted Lists/13.png -------------------------------------------------------------------------------- /Leetcode/23. Merge k Sorted Lists/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/23. Merge k Sorted Lists/14.png -------------------------------------------------------------------------------- /Leetcode/23. Merge k Sorted Lists/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/23. Merge k Sorted Lists/2.png -------------------------------------------------------------------------------- /Leetcode/23. Merge k Sorted Lists/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/23. Merge k Sorted Lists/3.png -------------------------------------------------------------------------------- /Leetcode/23. Merge k Sorted Lists/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/23. Merge k Sorted Lists/4.png -------------------------------------------------------------------------------- /Leetcode/23. Merge k Sorted Lists/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/23. Merge k Sorted Lists/5.png -------------------------------------------------------------------------------- /Leetcode/23. Merge k Sorted Lists/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/23. Merge k Sorted Lists/6.png -------------------------------------------------------------------------------- /Leetcode/23. Merge k Sorted Lists/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/23. Merge k Sorted Lists/7.png -------------------------------------------------------------------------------- /Leetcode/23. Merge k Sorted Lists/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/23. Merge k Sorted Lists/8.png -------------------------------------------------------------------------------- /Leetcode/23. Merge k Sorted Lists/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/23. Merge k Sorted Lists/9.png -------------------------------------------------------------------------------- /Leetcode/231. Power of Two/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/231. Power of Two/README.md -------------------------------------------------------------------------------- /Leetcode/231. Power of Two/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/231. Power of Two/solution1.py -------------------------------------------------------------------------------- /Leetcode/231. Power of Two/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/231. Power of Two/solution2.py -------------------------------------------------------------------------------- /Leetcode/24. Swap Nodes in Pairs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/24. Swap Nodes in Pairs/README.md -------------------------------------------------------------------------------- /Leetcode/242. Valid Anagram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/242. Valid Anagram/README.md -------------------------------------------------------------------------------- /Leetcode/242. Valid Anagram/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/242. Valid Anagram/solution1.py -------------------------------------------------------------------------------- /Leetcode/242. Valid Anagram/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/242. Valid Anagram/solution2.py -------------------------------------------------------------------------------- /Leetcode/242. Valid Anagram/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/242. Valid Anagram/solution3.py -------------------------------------------------------------------------------- /Leetcode/242. Valid Anagram/solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/242. Valid Anagram/solution4.py -------------------------------------------------------------------------------- /Leetcode/252. Meeting Rooms/.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/252. Meeting Rooms/.secret -------------------------------------------------------------------------------- /Leetcode/252. Meeting Rooms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/252. Meeting Rooms/README.md -------------------------------------------------------------------------------- /Leetcode/252. Meeting Rooms/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/252. Meeting Rooms/solution1.py -------------------------------------------------------------------------------- /Leetcode/252. Meeting Rooms/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/252. Meeting Rooms/solution2.py -------------------------------------------------------------------------------- /Leetcode/257. Binary Tree Paths/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/257. Binary Tree Paths/README.md -------------------------------------------------------------------------------- /Leetcode/258. Add Digits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/258. Add Digits/README.md -------------------------------------------------------------------------------- /Leetcode/258. Add Digits/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/258. Add Digits/solution1.py -------------------------------------------------------------------------------- /Leetcode/258. Add Digits/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/258. Add Digits/solution2.py -------------------------------------------------------------------------------- /Leetcode/260. Single Number III/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/260. Single Number III/README.md -------------------------------------------------------------------------------- /Leetcode/262. Trips and Users/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/262. Trips and Users/README.md -------------------------------------------------------------------------------- /Leetcode/263. Ugly Number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/263. Ugly Number/README.md -------------------------------------------------------------------------------- /Leetcode/263. Ugly Number/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/263. Ugly Number/solution1.py -------------------------------------------------------------------------------- /Leetcode/263. Ugly Number/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/263. Ugly Number/solution2.py -------------------------------------------------------------------------------- /Leetcode/264. Ugly Number II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/264. Ugly Number II/README.md -------------------------------------------------------------------------------- /Leetcode/264. Ugly Number II/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/264. Ugly Number II/solution1.py -------------------------------------------------------------------------------- /Leetcode/264. Ugly Number II/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/264. Ugly Number II/solution2.py -------------------------------------------------------------------------------- /Leetcode/268. Missing Number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/268. Missing Number/README.md -------------------------------------------------------------------------------- /Leetcode/268. Missing Number/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/268. Missing Number/solution1.py -------------------------------------------------------------------------------- /Leetcode/268. Missing Number/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/268. Missing Number/solution2.py -------------------------------------------------------------------------------- /Leetcode/27. Remove Element/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/27. Remove Element/README.md -------------------------------------------------------------------------------- /Leetcode/27. Remove Element/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/27. Remove Element/solution1.md -------------------------------------------------------------------------------- /Leetcode/27. Remove Element/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/27. Remove Element/solution1.py -------------------------------------------------------------------------------- /Leetcode/27. Remove Element/solution2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/27. Remove Element/solution2.md -------------------------------------------------------------------------------- /Leetcode/27. Remove Element/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/27. Remove Element/solution2.py -------------------------------------------------------------------------------- /Leetcode/27. Remove Element/solution3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/27. Remove Element/solution3.md -------------------------------------------------------------------------------- /Leetcode/27. Remove Element/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/27. Remove Element/solution3.py -------------------------------------------------------------------------------- /Leetcode/27. Remove Element/solution4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/27. Remove Element/solution4.md -------------------------------------------------------------------------------- /Leetcode/27. Remove Element/solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/27. Remove Element/solution4.py -------------------------------------------------------------------------------- /Leetcode/274. H-Index/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/274. H-Index/README.md -------------------------------------------------------------------------------- /Leetcode/274. H-Index/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/274. H-Index/solution1.py -------------------------------------------------------------------------------- /Leetcode/274. H-Index/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/274. H-Index/solution2.py -------------------------------------------------------------------------------- /Leetcode/275. H-Index II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/275. H-Index II/README.md -------------------------------------------------------------------------------- /Leetcode/275. H-Index II/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/275. H-Index II/solution1.py -------------------------------------------------------------------------------- /Leetcode/276. Paint Fence/.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/276. Paint Fence/.secret -------------------------------------------------------------------------------- /Leetcode/276. Paint Fence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/276. Paint Fence/README.md -------------------------------------------------------------------------------- /Leetcode/276. Paint Fence/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/276. Paint Fence/solution1.py -------------------------------------------------------------------------------- /Leetcode/278. First Bad Version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/278. First Bad Version/README.md -------------------------------------------------------------------------------- /Leetcode/279. Perfect Squares/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/279. Perfect Squares/README.md -------------------------------------------------------------------------------- /Leetcode/279. Perfect Squares/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/279. Perfect Squares/solution1.py -------------------------------------------------------------------------------- /Leetcode/279. Perfect Squares/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/279. Perfect Squares/solution2.py -------------------------------------------------------------------------------- /Leetcode/279. Perfect Squares/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/279. Perfect Squares/solution3.py -------------------------------------------------------------------------------- /Leetcode/28. Implement strStr()/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/28. Implement strStr()/README.md -------------------------------------------------------------------------------- /Leetcode/283. Move Zeroes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/283. Move Zeroes/README.md -------------------------------------------------------------------------------- /Leetcode/283. Move Zeroes/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/283. Move Zeroes/solution1.py -------------------------------------------------------------------------------- /Leetcode/283. Move Zeroes/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/283. Move Zeroes/solution2.py -------------------------------------------------------------------------------- /Leetcode/284. Peeking Iterator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/284. Peeking Iterator/README.md -------------------------------------------------------------------------------- /Leetcode/289. Game of Life/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/289. Game of Life/README.md -------------------------------------------------------------------------------- /Leetcode/289. Game of Life/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/289. Game of Life/solution1.py -------------------------------------------------------------------------------- /Leetcode/289. Game of Life/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/289. Game of Life/solution2.py -------------------------------------------------------------------------------- /Leetcode/289. Game of Life/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/289. Game of Life/solution3.py -------------------------------------------------------------------------------- /Leetcode/29. Divide Two Integers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/29. Divide Two Integers/README.md -------------------------------------------------------------------------------- /Leetcode/290. Word Pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/290. Word Pattern/README.md -------------------------------------------------------------------------------- /Leetcode/290. Word Pattern/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/290. Word Pattern/solution1.py -------------------------------------------------------------------------------- /Leetcode/290. Word Pattern/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/290. Word Pattern/solution2.py -------------------------------------------------------------------------------- /Leetcode/292. Nim Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/292. Nim Game/README.md -------------------------------------------------------------------------------- /Leetcode/292. Nim Game/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/292. Nim Game/solution1.py -------------------------------------------------------------------------------- /Leetcode/293. Flip Game/.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/293. Flip Game/.secret -------------------------------------------------------------------------------- /Leetcode/293. Flip Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/293. Flip Game/README.md -------------------------------------------------------------------------------- /Leetcode/293. Flip Game/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/293. Flip Game/solution1.py -------------------------------------------------------------------------------- /Leetcode/293. Flip Game/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/293. Flip Game/solution2.py -------------------------------------------------------------------------------- /Leetcode/299. Bulls and Cows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/299. Bulls and Cows/README.md -------------------------------------------------------------------------------- /Leetcode/299. Bulls and Cows/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/299. Bulls and Cows/solution1.py -------------------------------------------------------------------------------- /Leetcode/306. Additive Number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/306. Additive Number/README.md -------------------------------------------------------------------------------- /Leetcode/306. Additive Number/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/306. Additive Number/solution1.py -------------------------------------------------------------------------------- /Leetcode/31. Next Permutation/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/31. Next Permutation/1.gif -------------------------------------------------------------------------------- /Leetcode/31. Next Permutation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/31. Next Permutation/README.md -------------------------------------------------------------------------------- /Leetcode/31. Next Permutation/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/31. Next Permutation/solution1.md -------------------------------------------------------------------------------- /Leetcode/31. Next Permutation/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/31. Next Permutation/solution1.py -------------------------------------------------------------------------------- /Leetcode/312. Burst Balloons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/312. Burst Balloons/README.md -------------------------------------------------------------------------------- /Leetcode/312. Burst Balloons/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/312. Burst Balloons/solution1.py -------------------------------------------------------------------------------- /Leetcode/313. Super Ugly Number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/313. Super Ugly Number/README.md -------------------------------------------------------------------------------- /Leetcode/319. Bulb Switcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/319. Bulb Switcher/README.md -------------------------------------------------------------------------------- /Leetcode/319. Bulb Switcher/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/319. Bulb Switcher/solution1.py -------------------------------------------------------------------------------- /Leetcode/319. Bulb Switcher/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/319. Bulb Switcher/solution2.py -------------------------------------------------------------------------------- /Leetcode/322. Coin Change/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/322. Coin Change/README.md -------------------------------------------------------------------------------- /Leetcode/322. Coin Change/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/322. Coin Change/solution1.py -------------------------------------------------------------------------------- /Leetcode/322. Coin Change/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/322. Coin Change/solution2.py -------------------------------------------------------------------------------- /Leetcode/324. Wiggle Sort II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/324. Wiggle Sort II/README.md -------------------------------------------------------------------------------- /Leetcode/324. Wiggle Sort II/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/324. Wiggle Sort II/solution1.py -------------------------------------------------------------------------------- /Leetcode/326. Power of Three/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/326. Power of Three/README.md -------------------------------------------------------------------------------- /Leetcode/326. Power of Three/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/326. Power of Three/solution1.py -------------------------------------------------------------------------------- /Leetcode/326. Power of Three/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/326. Power of Three/solution2.py -------------------------------------------------------------------------------- /Leetcode/326. Power of Three/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/326. Power of Three/solution3.py -------------------------------------------------------------------------------- /Leetcode/327. Count of Range Sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/327. Count of Range Sum/README.md -------------------------------------------------------------------------------- /Leetcode/330. Patching Array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/330. Patching Array/README.md -------------------------------------------------------------------------------- /Leetcode/330. Patching Array/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/330. Patching Array/solution1.py -------------------------------------------------------------------------------- /Leetcode/335. Self Crossing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/335. Self Crossing/README.md -------------------------------------------------------------------------------- /Leetcode/335. Self Crossing/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/335. Self Crossing/solution1.py -------------------------------------------------------------------------------- /Leetcode/335. Self Crossing/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/335. Self Crossing/solution2.py -------------------------------------------------------------------------------- /Leetcode/336. Palindrome Pairs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/336. Palindrome Pairs/README.md -------------------------------------------------------------------------------- /Leetcode/337. House Robber III/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/337. House Robber III/README.md -------------------------------------------------------------------------------- /Leetcode/337. House Robber III/soluton1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/337. House Robber III/soluton1.py -------------------------------------------------------------------------------- /Leetcode/337. House Robber III/soluton2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/337. House Robber III/soluton2.py -------------------------------------------------------------------------------- /Leetcode/338. Counting Bits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/338. Counting Bits/README.md -------------------------------------------------------------------------------- /Leetcode/338. Counting Bits/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/338. Counting Bits/solution1.py -------------------------------------------------------------------------------- /Leetcode/338. Counting Bits/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/338. Counting Bits/solution2.py -------------------------------------------------------------------------------- /Leetcode/342. Power of Four/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/342. Power of Four/README.md -------------------------------------------------------------------------------- /Leetcode/342. Power of Four/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/342. Power of Four/solution1.py -------------------------------------------------------------------------------- /Leetcode/342. Power of Four/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/342. Power of Four/solution2.py -------------------------------------------------------------------------------- /Leetcode/342. Power of Four/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/342. Power of Four/solution3.py -------------------------------------------------------------------------------- /Leetcode/343. Integer Break/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/343. Integer Break/README.md -------------------------------------------------------------------------------- /Leetcode/343. Integer Break/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/343. Integer Break/solution1.py -------------------------------------------------------------------------------- /Leetcode/343. Integer Break/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/343. Integer Break/solution2.py -------------------------------------------------------------------------------- /Leetcode/343. Integer Break/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/343. Integer Break/solution3.py -------------------------------------------------------------------------------- /Leetcode/344. Reverse String/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/344. Reverse String/README.md -------------------------------------------------------------------------------- /Leetcode/344. Reverse String/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/344. Reverse String/solution1.py -------------------------------------------------------------------------------- /Leetcode/344. Reverse String/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/344. Reverse String/solution2.py -------------------------------------------------------------------------------- /Leetcode/344. Reverse String/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/344. Reverse String/solution3.py -------------------------------------------------------------------------------- /Leetcode/355. Design Twitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/355. Design Twitter/README.md -------------------------------------------------------------------------------- /Leetcode/355. Design Twitter/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/355. Design Twitter/solution1.py -------------------------------------------------------------------------------- /Leetcode/359. Logger Rate Limiter/.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/359. Logger Rate Limiter/.secret -------------------------------------------------------------------------------- /Leetcode/36. Valid Sudoku/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/36. Valid Sudoku/README.md -------------------------------------------------------------------------------- /Leetcode/36. Valid Sudoku/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/36. Valid Sudoku/solution1.md -------------------------------------------------------------------------------- /Leetcode/36. Valid Sudoku/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/36. Valid Sudoku/solution1.py -------------------------------------------------------------------------------- /Leetcode/36. Valid Sudoku/solution2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/36. Valid Sudoku/solution2.md -------------------------------------------------------------------------------- /Leetcode/36. Valid Sudoku/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/36. Valid Sudoku/solution2.py -------------------------------------------------------------------------------- /Leetcode/37. Sudoku Solver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/37. Sudoku Solver/README.md -------------------------------------------------------------------------------- /Leetcode/37. Sudoku Solver/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/37. Sudoku Solver/solution1.md -------------------------------------------------------------------------------- /Leetcode/37. Sudoku Solver/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/37. Sudoku Solver/solution1.py -------------------------------------------------------------------------------- /Leetcode/37. Sudoku Solver/solution2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/37. Sudoku Solver/solution2.md -------------------------------------------------------------------------------- /Leetcode/37. Sudoku Solver/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/37. Sudoku Solver/solution2.py -------------------------------------------------------------------------------- /Leetcode/37. Sudoku Solver/solution3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/37. Sudoku Solver/solution3.md -------------------------------------------------------------------------------- /Leetcode/37. Sudoku Solver/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/37. Sudoku Solver/solution3.py -------------------------------------------------------------------------------- /Leetcode/372. Super Pow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/372. Super Pow/README.md -------------------------------------------------------------------------------- /Leetcode/372. Super Pow/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/372. Super Pow/solution1.py -------------------------------------------------------------------------------- /Leetcode/376. Wiggle Subsequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/376. Wiggle Subsequence/README.md -------------------------------------------------------------------------------- /Leetcode/377. Combination Sum IV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/377. Combination Sum IV/README.md -------------------------------------------------------------------------------- /Leetcode/38. Count and Say/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/38. Count and Say/README.md -------------------------------------------------------------------------------- /Leetcode/38. Count and Say/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/38. Count and Say/solution1.md -------------------------------------------------------------------------------- /Leetcode/38. Count and Say/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/38. Count and Say/solution1.py -------------------------------------------------------------------------------- /Leetcode/383. Ransom Note/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/383. Ransom Note/README.md -------------------------------------------------------------------------------- /Leetcode/383. Ransom Note/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/383. Ransom Note/solution1.py -------------------------------------------------------------------------------- /Leetcode/383. Ransom Note/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/383. Ransom Note/solution2.py -------------------------------------------------------------------------------- /Leetcode/384. Shuffle an Array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/384. Shuffle an Array/README.md -------------------------------------------------------------------------------- /Leetcode/385. Mini Parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/385. Mini Parser/README.md -------------------------------------------------------------------------------- /Leetcode/385. Mini Parser/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/385. Mini Parser/solution1.py -------------------------------------------------------------------------------- /Leetcode/39. Combination Sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/39. Combination Sum/README.md -------------------------------------------------------------------------------- /Leetcode/39. Combination Sum/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/39. Combination Sum/solution1.md -------------------------------------------------------------------------------- /Leetcode/39. Combination Sum/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/39. Combination Sum/solution1.py -------------------------------------------------------------------------------- /Leetcode/390. Elimination Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/390. Elimination Game/README.md -------------------------------------------------------------------------------- /Leetcode/391. Perfect Rectangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/391. Perfect Rectangle/README.md -------------------------------------------------------------------------------- /Leetcode/392. Is Subsequence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/392. Is Subsequence/README.md -------------------------------------------------------------------------------- /Leetcode/392. Is Subsequence/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/392. Is Subsequence/solution1.py -------------------------------------------------------------------------------- /Leetcode/393. UTF-8 Validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/393. UTF-8 Validation/README.md -------------------------------------------------------------------------------- /Leetcode/394. Decode String/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/394. Decode String/README.md -------------------------------------------------------------------------------- /Leetcode/394. Decode String/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/394. Decode String/solution1.py -------------------------------------------------------------------------------- /Leetcode/396. Rotate Function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/396. Rotate Function/README.md -------------------------------------------------------------------------------- /Leetcode/396. Rotate Function/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/396. Rotate Function/solution1.py -------------------------------------------------------------------------------- /Leetcode/396. Rotate Function/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/396. Rotate Function/solution2.py -------------------------------------------------------------------------------- /Leetcode/398. Random Pick Index/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/398. Random Pick Index/README.md -------------------------------------------------------------------------------- /Leetcode/399. Evaluate Division/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/399. Evaluate Division/README.md -------------------------------------------------------------------------------- /Leetcode/40. Combination Sum II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/40. Combination Sum II/README.md -------------------------------------------------------------------------------- /Leetcode/400. Nth Digit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/400. Nth Digit/README.md -------------------------------------------------------------------------------- /Leetcode/400. Nth Digit/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/400. Nth Digit/solution1.py -------------------------------------------------------------------------------- /Leetcode/401. Binary Watch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/401. Binary Watch/README.md -------------------------------------------------------------------------------- /Leetcode/401. Binary Watch/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/401. Binary Watch/solution1.py -------------------------------------------------------------------------------- /Leetcode/401. Binary Watch/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/401. Binary Watch/solution2.py -------------------------------------------------------------------------------- /Leetcode/401. Binary Watch/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/401. Binary Watch/solution3.py -------------------------------------------------------------------------------- /Leetcode/401. Binary Watch/solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/401. Binary Watch/solution4.py -------------------------------------------------------------------------------- /Leetcode/402. Remove K Digits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/402. Remove K Digits/README.md -------------------------------------------------------------------------------- /Leetcode/402. Remove K Digits/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/402. Remove K Digits/solution1.py -------------------------------------------------------------------------------- /Leetcode/403. Frog Jump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/403. Frog Jump/README.md -------------------------------------------------------------------------------- /Leetcode/403. Frog Jump/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/403. Frog Jump/solution1.py -------------------------------------------------------------------------------- /Leetcode/404. Sum of Left Leaves/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/404. Sum of Left Leaves/README.md -------------------------------------------------------------------------------- /Leetcode/409. Longest Palindrome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/409. Longest Palindrome/README.md -------------------------------------------------------------------------------- /Leetcode/412. Fizz Buzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/412. Fizz Buzz/README.md -------------------------------------------------------------------------------- /Leetcode/412. Fizz Buzz/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/412. Fizz Buzz/solution1.py -------------------------------------------------------------------------------- /Leetcode/412. Fizz Buzz/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/412. Fizz Buzz/solution2.py -------------------------------------------------------------------------------- /Leetcode/412. Fizz Buzz/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/412. Fizz Buzz/solution3.py -------------------------------------------------------------------------------- /Leetcode/412. Fizz Buzz/solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/412. Fizz Buzz/solution4.py -------------------------------------------------------------------------------- /Leetcode/412. Fizz Buzz/solution5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/412. Fizz Buzz/solution5.py -------------------------------------------------------------------------------- /Leetcode/413. Arithmetic Slices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/413. Arithmetic Slices/README.md -------------------------------------------------------------------------------- /Leetcode/415. Add Strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/415. Add Strings/README.md -------------------------------------------------------------------------------- /Leetcode/415. Add Strings/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/415. Add Strings/solution1.py -------------------------------------------------------------------------------- /Leetcode/415. Add Strings/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/415. Add Strings/solution2.py -------------------------------------------------------------------------------- /Leetcode/42. Trapping Rain Water/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/42. Trapping Rain Water/1.png -------------------------------------------------------------------------------- /Leetcode/42. Trapping Rain Water/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/42. Trapping Rain Water/10.png -------------------------------------------------------------------------------- /Leetcode/42. Trapping Rain Water/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/42. Trapping Rain Water/11.png -------------------------------------------------------------------------------- /Leetcode/42. Trapping Rain Water/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/42. Trapping Rain Water/12.png -------------------------------------------------------------------------------- /Leetcode/42. Trapping Rain Water/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/42. Trapping Rain Water/2.png -------------------------------------------------------------------------------- /Leetcode/42. Trapping Rain Water/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/42. Trapping Rain Water/3.png -------------------------------------------------------------------------------- /Leetcode/42. Trapping Rain Water/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/42. Trapping Rain Water/4.png -------------------------------------------------------------------------------- /Leetcode/42. Trapping Rain Water/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/42. Trapping Rain Water/5.png -------------------------------------------------------------------------------- /Leetcode/42. Trapping Rain Water/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/42. Trapping Rain Water/6.png -------------------------------------------------------------------------------- /Leetcode/42. Trapping Rain Water/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/42. Trapping Rain Water/7.png -------------------------------------------------------------------------------- /Leetcode/42. Trapping Rain Water/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/42. Trapping Rain Water/8.png -------------------------------------------------------------------------------- /Leetcode/42. Trapping Rain Water/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/42. Trapping Rain Water/9.png -------------------------------------------------------------------------------- /Leetcode/42. Trapping Rain Water/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/42. Trapping Rain Water/README.md -------------------------------------------------------------------------------- /Leetcode/422. Valid Word Square/.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/422. Valid Word Square/.secret -------------------------------------------------------------------------------- /Leetcode/422. Valid Word Square/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/422. Valid Word Square/README.md -------------------------------------------------------------------------------- /Leetcode/43. Multiply Strings/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/43. Multiply Strings/1.jpg -------------------------------------------------------------------------------- /Leetcode/43. Multiply Strings/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/43. Multiply Strings/2.jpg -------------------------------------------------------------------------------- /Leetcode/43. Multiply Strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/43. Multiply Strings/README.md -------------------------------------------------------------------------------- /Leetcode/43. Multiply Strings/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/43. Multiply Strings/solution1.md -------------------------------------------------------------------------------- /Leetcode/43. Multiply Strings/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/43. Multiply Strings/solution1.py -------------------------------------------------------------------------------- /Leetcode/437. Path Sum III/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/437. Path Sum III/README.md -------------------------------------------------------------------------------- /Leetcode/437. Path Sum III/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/437. Path Sum III/solution1.py -------------------------------------------------------------------------------- /Leetcode/437. Path Sum III/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/437. Path Sum III/solution2.py -------------------------------------------------------------------------------- /Leetcode/437. Path Sum III/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/437. Path Sum III/solution3.py -------------------------------------------------------------------------------- /Leetcode/437. Path Sum III/solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/437. Path Sum III/solution4.py -------------------------------------------------------------------------------- /Leetcode/44. Wildcard Matching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/44. Wildcard Matching/README.md -------------------------------------------------------------------------------- /Leetcode/441. Arranging Coins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/441. Arranging Coins/README.md -------------------------------------------------------------------------------- /Leetcode/441. Arranging Coins/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/441. Arranging Coins/solution1.py -------------------------------------------------------------------------------- /Leetcode/441. Arranging Coins/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/441. Arranging Coins/solution2.py -------------------------------------------------------------------------------- /Leetcode/441. Arranging Coins/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/441. Arranging Coins/solution3.py -------------------------------------------------------------------------------- /Leetcode/443. String Compression/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/443. String Compression/README.md -------------------------------------------------------------------------------- /Leetcode/445. Add Two Numbers II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/445. Add Two Numbers II/README.md -------------------------------------------------------------------------------- /Leetcode/45. Jump Game II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/45. Jump Game II/README.md -------------------------------------------------------------------------------- /Leetcode/45. Jump Game II/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/45. Jump Game II/solution1.py -------------------------------------------------------------------------------- /Leetcode/454. 4Sum II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/454. 4Sum II/README.md -------------------------------------------------------------------------------- /Leetcode/454. 4Sum II/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/454. 4Sum II/solution1.py -------------------------------------------------------------------------------- /Leetcode/454. 4Sum II/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/454. 4Sum II/solution2.py -------------------------------------------------------------------------------- /Leetcode/455. Assign Cookies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/455. Assign Cookies/README.md -------------------------------------------------------------------------------- /Leetcode/455. Assign Cookies/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/455. Assign Cookies/solution1.py -------------------------------------------------------------------------------- /Leetcode/455. Assign Cookies/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/455. Assign Cookies/solution2.py -------------------------------------------------------------------------------- /Leetcode/456. 132 Pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/456. 132 Pattern/README.md -------------------------------------------------------------------------------- /Leetcode/456. 132 Pattern/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/456. 132 Pattern/solution1.py -------------------------------------------------------------------------------- /Leetcode/458. Poor Pigs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/458. Poor Pigs/README.md -------------------------------------------------------------------------------- /Leetcode/458. Poor Pigs/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/458. Poor Pigs/solution1.py -------------------------------------------------------------------------------- /Leetcode/46. Permutations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/46. Permutations/README.md -------------------------------------------------------------------------------- /Leetcode/46. Permutations/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/46. Permutations/solution1.py -------------------------------------------------------------------------------- /Leetcode/46. Permutations/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/46. Permutations/solution2.py -------------------------------------------------------------------------------- /Leetcode/46. Permutations/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/46. Permutations/solution3.py -------------------------------------------------------------------------------- /Leetcode/460. LFU Cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/460. LFU Cache/README.md -------------------------------------------------------------------------------- /Leetcode/460. LFU Cache/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/460. LFU Cache/solution1.py -------------------------------------------------------------------------------- /Leetcode/461. Hamming Distance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/461. Hamming Distance/README.md -------------------------------------------------------------------------------- /Leetcode/463. Island Perimeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/463. Island Perimeter/README.md -------------------------------------------------------------------------------- /Leetcode/464. Can I Win/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/464. Can I Win/README.md -------------------------------------------------------------------------------- /Leetcode/464. Can I Win/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/464. Can I Win/solution1.py -------------------------------------------------------------------------------- /Leetcode/47. Permutations II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/47. Permutations II/README.md -------------------------------------------------------------------------------- /Leetcode/47. Permutations II/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/47. Permutations II/solution1.py -------------------------------------------------------------------------------- /Leetcode/47. Permutations II/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/47. Permutations II/solution2.py -------------------------------------------------------------------------------- /Leetcode/472. Concatenated Words/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/472. Concatenated Words/README.md -------------------------------------------------------------------------------- /Leetcode/474. Ones and Zeroes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/474. Ones and Zeroes/README.md -------------------------------------------------------------------------------- /Leetcode/474. Ones and Zeroes/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/474. Ones and Zeroes/solution1.py -------------------------------------------------------------------------------- /Leetcode/475. Heaters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/475. Heaters/README.md -------------------------------------------------------------------------------- /Leetcode/475. Heaters/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/475. Heaters/solution1.py -------------------------------------------------------------------------------- /Leetcode/475. Heaters/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/475. Heaters/solution2.py -------------------------------------------------------------------------------- /Leetcode/476. Number Complement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/476. Number Complement/README.md -------------------------------------------------------------------------------- /Leetcode/48. Rotate Image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/48. Rotate Image/README.md -------------------------------------------------------------------------------- /Leetcode/48. Rotate Image/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/48. Rotate Image/solution1.py -------------------------------------------------------------------------------- /Leetcode/48. Rotate Image/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/48. Rotate Image/solution2.py -------------------------------------------------------------------------------- /Leetcode/481. Magical String/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/481. Magical String/README.md -------------------------------------------------------------------------------- /Leetcode/481. Magical String/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/481. Magical String/solution1.py -------------------------------------------------------------------------------- /Leetcode/483. Smallest Good Base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/483. Smallest Good Base/README.md -------------------------------------------------------------------------------- /Leetcode/486. Predict the Winner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/486. Predict the Winner/README.md -------------------------------------------------------------------------------- /Leetcode/488. Zuma Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/488. Zuma Game/README.md -------------------------------------------------------------------------------- /Leetcode/488. Zuma Game/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/488. Zuma Game/solution1.py -------------------------------------------------------------------------------- /Leetcode/49. Group Anagrams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/49. Group Anagrams/README.md -------------------------------------------------------------------------------- /Leetcode/49. Group Anagrams/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/49. Group Anagrams/solution1.py -------------------------------------------------------------------------------- /Leetcode/49. Group Anagrams/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/49. Group Anagrams/solution2.py -------------------------------------------------------------------------------- /Leetcode/493. Reverse Pairs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/493. Reverse Pairs/README.md -------------------------------------------------------------------------------- /Leetcode/493. Reverse Pairs/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/493. Reverse Pairs/solution1.py -------------------------------------------------------------------------------- /Leetcode/493. Reverse Pairs/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/493. Reverse Pairs/solution2.py -------------------------------------------------------------------------------- /Leetcode/494. Target Sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/494. Target Sum/README.md -------------------------------------------------------------------------------- /Leetcode/494. Target Sum/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/494. Target Sum/solution1.py -------------------------------------------------------------------------------- /Leetcode/494. Target Sum/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/494. Target Sum/solution2.py -------------------------------------------------------------------------------- /Leetcode/495. Teemo Attacking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/495. Teemo Attacking/README.md -------------------------------------------------------------------------------- /Leetcode/495. Teemo Attacking/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/495. Teemo Attacking/solution1.py -------------------------------------------------------------------------------- /Leetcode/495. Teemo Attacking/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/495. Teemo Attacking/solution2.py -------------------------------------------------------------------------------- /Leetcode/50. Pow(x, n)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/50. Pow(x, n)/README.md -------------------------------------------------------------------------------- /Leetcode/50. Pow(x, n)/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/50. Pow(x, n)/solution1.py -------------------------------------------------------------------------------- /Leetcode/50. Pow(x, n)/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/50. Pow(x, n)/solution2.py -------------------------------------------------------------------------------- /Leetcode/500. Keyboard Row/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/500. Keyboard Row/README.md -------------------------------------------------------------------------------- /Leetcode/500. Keyboard Row/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/500. Keyboard Row/solution1.py -------------------------------------------------------------------------------- /Leetcode/502. IPO/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/502. IPO/README.md -------------------------------------------------------------------------------- /Leetcode/502. IPO/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/502. IPO/solution1.py -------------------------------------------------------------------------------- /Leetcode/504. Base 7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/504. Base 7/README.md -------------------------------------------------------------------------------- /Leetcode/504. Base 7/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/504. Base 7/solution1.py -------------------------------------------------------------------------------- /Leetcode/506. Relative Ranks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/506. Relative Ranks/README.md -------------------------------------------------------------------------------- /Leetcode/506. Relative Ranks/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/506. Relative Ranks/solution1.py -------------------------------------------------------------------------------- /Leetcode/507. Perfect Number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/507. Perfect Number/README.md -------------------------------------------------------------------------------- /Leetcode/507. Perfect Number/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/507. Perfect Number/solution1.py -------------------------------------------------------------------------------- /Leetcode/507. Perfect Number/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/507. Perfect Number/solution2.py -------------------------------------------------------------------------------- /Leetcode/509. Fibonacci Number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/509. Fibonacci Number/README.md -------------------------------------------------------------------------------- /Leetcode/51. N-Queens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/51. N-Queens/README.md -------------------------------------------------------------------------------- /Leetcode/51. N-Queens/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/51. N-Queens/solution1.py -------------------------------------------------------------------------------- /Leetcode/511. Game Play Analysis I/.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/511. Game Play Analysis I/.secret -------------------------------------------------------------------------------- /Leetcode/514. Freedom Trail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/514. Freedom Trail/README.md -------------------------------------------------------------------------------- /Leetcode/514. Freedom Trail/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/514. Freedom Trail/solution1.py -------------------------------------------------------------------------------- /Leetcode/514. Freedom Trail/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/514. Freedom Trail/solution2.py -------------------------------------------------------------------------------- /Leetcode/52. N-Queens II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/52. N-Queens II/README.md -------------------------------------------------------------------------------- /Leetcode/52. N-Queens II/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/52. N-Queens II/solution1.py -------------------------------------------------------------------------------- /Leetcode/52. N-Queens II/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/52. N-Queens II/solution2.py -------------------------------------------------------------------------------- /Leetcode/520. Detect Capital/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/520. Detect Capital/README.md -------------------------------------------------------------------------------- /Leetcode/520. Detect Capital/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/520. Detect Capital/solution1.py -------------------------------------------------------------------------------- /Leetcode/53. Maximum Subarray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/53. Maximum Subarray/README.md -------------------------------------------------------------------------------- /Leetcode/53. Maximum Subarray/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/53. Maximum Subarray/solution1.py -------------------------------------------------------------------------------- /Leetcode/54. Spiral Matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/54. Spiral Matrix/README.md -------------------------------------------------------------------------------- /Leetcode/54. Spiral Matrix/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/54. Spiral Matrix/solution1.py -------------------------------------------------------------------------------- /Leetcode/54. Spiral Matrix/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/54. Spiral Matrix/solution2.py -------------------------------------------------------------------------------- /Leetcode/541. Reverse String II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/541. Reverse String II/README.md -------------------------------------------------------------------------------- /Leetcode/546. Remove Boxes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/546. Remove Boxes/README.md -------------------------------------------------------------------------------- /Leetcode/546. Remove Boxes/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/546. Remove Boxes/solution1.py -------------------------------------------------------------------------------- /Leetcode/55. Jump Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/55. Jump Game/README.md -------------------------------------------------------------------------------- /Leetcode/55. Jump Game/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/55. Jump Game/solution1.py -------------------------------------------------------------------------------- /Leetcode/55. Jump Game/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/55. Jump Game/solution2.py -------------------------------------------------------------------------------- /Leetcode/55. Jump Game/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/55. Jump Game/solution3.py -------------------------------------------------------------------------------- /Leetcode/55. Jump Game/solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/55. Jump Game/solution4.py -------------------------------------------------------------------------------- /Leetcode/56. Merge Intervals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/56. Merge Intervals/README.md -------------------------------------------------------------------------------- /Leetcode/56. Merge Intervals/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/56. Merge Intervals/solution1.py -------------------------------------------------------------------------------- /Leetcode/56. Merge Intervals/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/56. Merge Intervals/solution2.py -------------------------------------------------------------------------------- /Leetcode/561. Array Partition I/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/561. Array Partition I/README.md -------------------------------------------------------------------------------- /Leetcode/563. Binary Tree Tilt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/563. Binary Tree Tilt/README.md -------------------------------------------------------------------------------- /Leetcode/566. Reshape the Matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/566. Reshape the Matrix/README.md -------------------------------------------------------------------------------- /Leetcode/57. Insert Interval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/57. Insert Interval/README.md -------------------------------------------------------------------------------- /Leetcode/57. Insert Interval/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/57. Insert Interval/solution1.py -------------------------------------------------------------------------------- /Leetcode/57. Insert Interval/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/57. Insert Interval/solution2.py -------------------------------------------------------------------------------- /Leetcode/575. Distribute Candies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/575. Distribute Candies/README.md -------------------------------------------------------------------------------- /Leetcode/577. Employee Bonus/.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/577. Employee Bonus/.secret -------------------------------------------------------------------------------- /Leetcode/577. Employee Bonus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/577. Employee Bonus/README.md -------------------------------------------------------------------------------- /Leetcode/577. Employee Bonus/solution1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/577. Employee Bonus/solution1.sql -------------------------------------------------------------------------------- /Leetcode/58. Length of Last Word/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/58. Length of Last Word/README.md -------------------------------------------------------------------------------- /Leetcode/587. Erect the Fence/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/587. Erect the Fence/README.md -------------------------------------------------------------------------------- /Leetcode/587. Erect the Fence/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/587. Erect the Fence/solution1.py -------------------------------------------------------------------------------- /Leetcode/59. Spiral Matrix II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/59. Spiral Matrix II/README.md -------------------------------------------------------------------------------- /Leetcode/59. Spiral Matrix II/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/59. Spiral Matrix II/solution1.py -------------------------------------------------------------------------------- /Leetcode/59. Spiral Matrix II/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/59. Spiral Matrix II/solution2.py -------------------------------------------------------------------------------- /Leetcode/591. Tag Validator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/591. Tag Validator/README.md -------------------------------------------------------------------------------- /Leetcode/591. Tag Validator/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/591. Tag Validator/solution1.py -------------------------------------------------------------------------------- /Leetcode/595. Big Countries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/595. Big Countries/README.md -------------------------------------------------------------------------------- /Leetcode/595. Big Countries/solution1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/595. Big Countries/solution1.sql -------------------------------------------------------------------------------- /Leetcode/598. Range Addition II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/598. Range Addition II/README.md -------------------------------------------------------------------------------- /Leetcode/6. ZigZag Conversion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/6. ZigZag Conversion/README.md -------------------------------------------------------------------------------- /Leetcode/6. ZigZag Conversion/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/6. ZigZag Conversion/solution1.md -------------------------------------------------------------------------------- /Leetcode/6. ZigZag Conversion/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/6. ZigZag Conversion/solution1.py -------------------------------------------------------------------------------- /Leetcode/6. ZigZag Conversion/solution2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/6. ZigZag Conversion/solution2.md -------------------------------------------------------------------------------- /Leetcode/6. ZigZag Conversion/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/6. ZigZag Conversion/solution2.py -------------------------------------------------------------------------------- /Leetcode/6. ZigZag Conversion/solution3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/6. ZigZag Conversion/solution3.md -------------------------------------------------------------------------------- /Leetcode/6. ZigZag Conversion/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/6. ZigZag Conversion/solution3.py -------------------------------------------------------------------------------- /Leetcode/605. Can Place Flowers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/605. Can Place Flowers/README.md -------------------------------------------------------------------------------- /Leetcode/61. Rotate List/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/61. Rotate List/README.md -------------------------------------------------------------------------------- /Leetcode/61. Rotate List/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/61. Rotate List/solution1.py -------------------------------------------------------------------------------- /Leetcode/62. Unique Paths/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/62. Unique Paths/README.md -------------------------------------------------------------------------------- /Leetcode/62. Unique Paths/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/62. Unique Paths/solution1.py -------------------------------------------------------------------------------- /Leetcode/62. Unique Paths/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/62. Unique Paths/solution2.py -------------------------------------------------------------------------------- /Leetcode/620. Not Boring Movies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/620. Not Boring Movies/README.md -------------------------------------------------------------------------------- /Leetcode/627. Swap Salary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/627. Swap Salary/README.md -------------------------------------------------------------------------------- /Leetcode/627. Swap Salary/solution1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/627. Swap Salary/solution1.sql -------------------------------------------------------------------------------- /Leetcode/63. Unique Paths II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/63. Unique Paths II/README.md -------------------------------------------------------------------------------- /Leetcode/63. Unique Paths II/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/63. Unique Paths II/solution1.py -------------------------------------------------------------------------------- /Leetcode/63. Unique Paths II/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/63. Unique Paths II/solution2.py -------------------------------------------------------------------------------- /Leetcode/64. Minimum Path Sum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/64. Minimum Path Sum/README.md -------------------------------------------------------------------------------- /Leetcode/64. Minimum Path Sum/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/64. Minimum Path Sum/solution1.py -------------------------------------------------------------------------------- /Leetcode/645. Set Mismatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/645. Set Mismatch/README.md -------------------------------------------------------------------------------- /Leetcode/645. Set Mismatch/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/645. Set Mismatch/solution1.py -------------------------------------------------------------------------------- /Leetcode/65. Valid Number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/65. Valid Number/README.md -------------------------------------------------------------------------------- /Leetcode/65. Valid Number/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/65. Valid Number/solution1.py -------------------------------------------------------------------------------- /Leetcode/65. Valid Number/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/65. Valid Number/solution2.py -------------------------------------------------------------------------------- /Leetcode/66. Plus One/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/66. Plus One/README.md -------------------------------------------------------------------------------- /Leetcode/66. Plus One/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/66. Plus One/solution1.py -------------------------------------------------------------------------------- /Leetcode/66. Plus One/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/66. Plus One/solution2.py -------------------------------------------------------------------------------- /Leetcode/661. Image Smoother/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/661. Image Smoother/README.md -------------------------------------------------------------------------------- /Leetcode/661. Image Smoother/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/661. Image Smoother/solution1.py -------------------------------------------------------------------------------- /Leetcode/67. Add Binary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/67. Add Binary/README.md -------------------------------------------------------------------------------- /Leetcode/67. Add Binary/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/67. Add Binary/solution1.py -------------------------------------------------------------------------------- /Leetcode/67. Add Binary/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/67. Add Binary/solution2.py -------------------------------------------------------------------------------- /Leetcode/68. Text Justification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/68. Text Justification/README.md -------------------------------------------------------------------------------- /Leetcode/682. Baseball Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/682. Baseball Game/README.md -------------------------------------------------------------------------------- /Leetcode/682. Baseball Game/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/682. Baseball Game/solution1.py -------------------------------------------------------------------------------- /Leetcode/69. Sqrt(x)/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/69. Sqrt(x)/README.md -------------------------------------------------------------------------------- /Leetcode/69. Sqrt(x)/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/69. Sqrt(x)/solution1.py -------------------------------------------------------------------------------- /Leetcode/69. Sqrt(x)/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/69. Sqrt(x)/solution2.py -------------------------------------------------------------------------------- /Leetcode/697. Degree of an Array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/697. Degree of an Array/README.md -------------------------------------------------------------------------------- /Leetcode/7. Reverse Integer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/7. Reverse Integer/README.md -------------------------------------------------------------------------------- /Leetcode/7. Reverse Integer/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/7. Reverse Integer/solution1.md -------------------------------------------------------------------------------- /Leetcode/7. Reverse Integer/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/7. Reverse Integer/solution1.py -------------------------------------------------------------------------------- /Leetcode/7. Reverse Integer/solution2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/7. Reverse Integer/solution2.md -------------------------------------------------------------------------------- /Leetcode/7. Reverse Integer/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/7. Reverse Integer/solution2.py -------------------------------------------------------------------------------- /Leetcode/70. Climbing Stairs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/70. Climbing Stairs/README.md -------------------------------------------------------------------------------- /Leetcode/70. Climbing Stairs/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/70. Climbing Stairs/solution1.py -------------------------------------------------------------------------------- /Leetcode/70. Climbing Stairs/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/70. Climbing Stairs/solution2.py -------------------------------------------------------------------------------- /Leetcode/70. Climbing Stairs/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/70. Climbing Stairs/solution3.py -------------------------------------------------------------------------------- /Leetcode/704. Binary Search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/704. Binary Search/README.md -------------------------------------------------------------------------------- /Leetcode/704. Binary Search/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/704. Binary Search/solution1.py -------------------------------------------------------------------------------- /Leetcode/705. Design HashSet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/705. Design HashSet/README.md -------------------------------------------------------------------------------- /Leetcode/705. Design HashSet/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/705. Design HashSet/solution1.py -------------------------------------------------------------------------------- /Leetcode/706. Design HashMap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/706. Design HashMap/README.md -------------------------------------------------------------------------------- /Leetcode/706. Design HashMap/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/706. Design HashMap/solution1.py -------------------------------------------------------------------------------- /Leetcode/707. Design Linked List/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/707. Design Linked List/README.md -------------------------------------------------------------------------------- /Leetcode/709. To Lower Case/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/709. To Lower Case/README.md -------------------------------------------------------------------------------- /Leetcode/709. To Lower Case/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/709. To Lower Case/solution1.py -------------------------------------------------------------------------------- /Leetcode/709. To Lower Case/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/709. To Lower Case/solution2.py -------------------------------------------------------------------------------- /Leetcode/71. Simplify Path/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/71. Simplify Path/README.md -------------------------------------------------------------------------------- /Leetcode/71. Simplify Path/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/71. Simplify Path/solution1.py -------------------------------------------------------------------------------- /Leetcode/71. Simplify Path/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/71. Simplify Path/solution2.py -------------------------------------------------------------------------------- /Leetcode/72. Edit Distance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/72. Edit Distance/README.md -------------------------------------------------------------------------------- /Leetcode/72. Edit Distance/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/72. Edit Distance/solution1.py -------------------------------------------------------------------------------- /Leetcode/72. Edit Distance/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/72. Edit Distance/solution2.py -------------------------------------------------------------------------------- /Leetcode/724. Find Pivot Index/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/724. Find Pivot Index/README.md -------------------------------------------------------------------------------- /Leetcode/73. Set Matrix Zeroes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/73. Set Matrix Zeroes/README.md -------------------------------------------------------------------------------- /Leetcode/732. My Calendar III/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/732. My Calendar III/README.md -------------------------------------------------------------------------------- /Leetcode/732. My Calendar III/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/732. My Calendar III/solution1.py -------------------------------------------------------------------------------- /Leetcode/732. My Calendar III/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/732. My Calendar III/solution2.py -------------------------------------------------------------------------------- /Leetcode/733. Flood Fill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/733. Flood Fill/README.md -------------------------------------------------------------------------------- /Leetcode/733. Flood Fill/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/733. Flood Fill/solution1.py -------------------------------------------------------------------------------- /Leetcode/74. Search a 2D Matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/74. Search a 2D Matrix/README.md -------------------------------------------------------------------------------- /Leetcode/75. Sort Colors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/75. Sort Colors/README.md -------------------------------------------------------------------------------- /Leetcode/75. Sort Colors/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/75. Sort Colors/solution1.py -------------------------------------------------------------------------------- /Leetcode/75. Sort Colors/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/75. Sort Colors/solution2.py -------------------------------------------------------------------------------- /Leetcode/75. Sort Colors/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/75. Sort Colors/solution3.py -------------------------------------------------------------------------------- /Leetcode/763. Partition Labels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/763. Partition Labels/README.md -------------------------------------------------------------------------------- /Leetcode/766. Toeplitz Matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/766. Toeplitz Matrix/README.md -------------------------------------------------------------------------------- /Leetcode/766. Toeplitz Matrix/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/766. Toeplitz Matrix/solution1.py -------------------------------------------------------------------------------- /Leetcode/77. Combinations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/77. Combinations/README.md -------------------------------------------------------------------------------- /Leetcode/77. Combinations/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/77. Combinations/solution1.py -------------------------------------------------------------------------------- /Leetcode/77. Combinations/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/77. Combinations/solution2.py -------------------------------------------------------------------------------- /Leetcode/771. Jewels and Stones/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/771. Jewels and Stones/README.md -------------------------------------------------------------------------------- /Leetcode/773. Sliding Puzzle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/773. Sliding Puzzle/README.md -------------------------------------------------------------------------------- /Leetcode/773. Sliding Puzzle/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/773. Sliding Puzzle/solution1.py -------------------------------------------------------------------------------- /Leetcode/773. Sliding Puzzle/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/773. Sliding Puzzle/solution2.py -------------------------------------------------------------------------------- /Leetcode/78. Subsets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/78. Subsets/README.md -------------------------------------------------------------------------------- /Leetcode/78. Subsets/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/78. Subsets/solution1.py -------------------------------------------------------------------------------- /Leetcode/78. Subsets/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/78. Subsets/solution2.py -------------------------------------------------------------------------------- /Leetcode/78. Subsets/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/78. Subsets/solution3.py -------------------------------------------------------------------------------- /Leetcode/78. Subsets/solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/78. Subsets/solution4.py -------------------------------------------------------------------------------- /Leetcode/78. Subsets/solution5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/78. Subsets/solution5.py -------------------------------------------------------------------------------- /Leetcode/788. Rotated Digits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/788. Rotated Digits/README.md -------------------------------------------------------------------------------- /Leetcode/788. Rotated Digits/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/788. Rotated Digits/solution1.py -------------------------------------------------------------------------------- /Leetcode/79. Word Search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/79. Word Search/README.md -------------------------------------------------------------------------------- /Leetcode/79. Word Search/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/79. Word Search/solution1.py -------------------------------------------------------------------------------- /Leetcode/79. Word Search/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/79. Word Search/solution2.py -------------------------------------------------------------------------------- /Leetcode/79. Word Search/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/79. Word Search/solution3.py -------------------------------------------------------------------------------- /Leetcode/796. Rotate String/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/796. Rotate String/README.md -------------------------------------------------------------------------------- /Leetcode/796. Rotate String/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/796. Rotate String/solution1.py -------------------------------------------------------------------------------- /Leetcode/819. Most Common Word/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/819. Most Common Word/README.md -------------------------------------------------------------------------------- /Leetcode/824. Goat Latin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/824. Goat Latin/README.md -------------------------------------------------------------------------------- /Leetcode/824. Goat Latin/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/824. Goat Latin/solution1.py -------------------------------------------------------------------------------- /Leetcode/832. Flipping an Image/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/832. Flipping an Image/README.md -------------------------------------------------------------------------------- /Leetcode/836. Rectangle Overlap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/836. Rectangle Overlap/README.md -------------------------------------------------------------------------------- /Leetcode/85. Maximal Rectangle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/85. Maximal Rectangle/README.md -------------------------------------------------------------------------------- /Leetcode/859. Buddy Strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/859. Buddy Strings/README.md -------------------------------------------------------------------------------- /Leetcode/859. Buddy Strings/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/859. Buddy Strings/solution1.py -------------------------------------------------------------------------------- /Leetcode/859. Buddy Strings/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/859. Buddy Strings/solution2.py -------------------------------------------------------------------------------- /Leetcode/86. Partition List/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/86. Partition List/README.md -------------------------------------------------------------------------------- /Leetcode/86. Partition List/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/86. Partition List/solution1.py -------------------------------------------------------------------------------- /Leetcode/860. Lemonade Change/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/860. Lemonade Change/README.md -------------------------------------------------------------------------------- /Leetcode/860. Lemonade Change/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/860. Lemonade Change/solution1.py -------------------------------------------------------------------------------- /Leetcode/867. Transpose Matrix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/867. Transpose Matrix/README.md -------------------------------------------------------------------------------- /Leetcode/868. Binary Gap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/868. Binary Gap/README.md -------------------------------------------------------------------------------- /Leetcode/868. Binary Gap/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/868. Binary Gap/solution1.py -------------------------------------------------------------------------------- /Leetcode/868. Binary Gap/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/868. Binary Gap/solution2.py -------------------------------------------------------------------------------- /Leetcode/87. Scramble String/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/87. Scramble String/README.md -------------------------------------------------------------------------------- /Leetcode/87. Scramble String/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/87. Scramble String/solution1.py -------------------------------------------------------------------------------- /Leetcode/87. Scramble String/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/87. Scramble String/solution2.py -------------------------------------------------------------------------------- /Leetcode/872. Leaf-Similar Trees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/872. Leaf-Similar Trees/README.md -------------------------------------------------------------------------------- /Leetcode/88. Merge Sorted Array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/88. Merge Sorted Array/README.md -------------------------------------------------------------------------------- /Leetcode/888. Fair Candy Swap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/888. Fair Candy Swap/README.md -------------------------------------------------------------------------------- /Leetcode/888. Fair Candy Swap/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/888. Fair Candy Swap/solution1.py -------------------------------------------------------------------------------- /Leetcode/89. Gray Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/89. Gray Code/README.md -------------------------------------------------------------------------------- /Leetcode/89. Gray Code/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/89. Gray Code/solution1.py -------------------------------------------------------------------------------- /Leetcode/89. Gray Code/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/89. Gray Code/solution2.py -------------------------------------------------------------------------------- /Leetcode/89. Gray Code/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/89. Gray Code/solution3.py -------------------------------------------------------------------------------- /Leetcode/896. Monotonic Array/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/896. Monotonic Array/README.md -------------------------------------------------------------------------------- /Leetcode/896. Monotonic Array/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/896. Monotonic Array/solution1.py -------------------------------------------------------------------------------- /Leetcode/896. Monotonic Array/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/896. Monotonic Array/solution2.py -------------------------------------------------------------------------------- /Leetcode/896. Monotonic Array/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/896. Monotonic Array/solution3.py -------------------------------------------------------------------------------- /Leetcode/9. Palindrome Number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/9. Palindrome Number/README.md -------------------------------------------------------------------------------- /Leetcode/9. Palindrome Number/solution1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/9. Palindrome Number/solution1.md -------------------------------------------------------------------------------- /Leetcode/9. Palindrome Number/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/9. Palindrome Number/solution1.py -------------------------------------------------------------------------------- /Leetcode/90. Subsets II/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/90. Subsets II/README.md -------------------------------------------------------------------------------- /Leetcode/90. Subsets II/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/90. Subsets II/solution1.py -------------------------------------------------------------------------------- /Leetcode/90. Subsets II/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/90. Subsets II/solution2.py -------------------------------------------------------------------------------- /Leetcode/90. Subsets II/solution3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/90. Subsets II/solution3.py -------------------------------------------------------------------------------- /Leetcode/90. Subsets II/solution4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/90. Subsets II/solution4.py -------------------------------------------------------------------------------- /Leetcode/908. Smallest Range I/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/908. Smallest Range I/README.md -------------------------------------------------------------------------------- /Leetcode/91. Decode Ways/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/91. Decode Ways/README.md -------------------------------------------------------------------------------- /Leetcode/91. Decode Ways/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/91. Decode Ways/solution1.py -------------------------------------------------------------------------------- /Leetcode/91. Decode Ways/solution2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/91. Decode Ways/solution2.py -------------------------------------------------------------------------------- /Leetcode/925. Long Pressed Name/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/925. Long Pressed Name/README.md -------------------------------------------------------------------------------- /Leetcode/938. Range Sum of BST/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/938. Range Sum of BST/README.md -------------------------------------------------------------------------------- /Leetcode/942. DI String Match/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/942. DI String Match/README.md -------------------------------------------------------------------------------- /Leetcode/942. DI String Match/solution1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/942. DI String Match/solution1.py -------------------------------------------------------------------------------- /Leetcode/97. Interleaving String/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/97. Interleaving String/README.md -------------------------------------------------------------------------------- /Leetcode/970. Powerful Integers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/970. Powerful Integers/README.md -------------------------------------------------------------------------------- /Leetcode/980. Unique Paths III/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/980. Unique Paths III/README.md -------------------------------------------------------------------------------- /Leetcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/Leetcode/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/README.md -------------------------------------------------------------------------------- /System Design/Glossary/Basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Glossary/Basics/README.md -------------------------------------------------------------------------------- /System Design/Glossary/CAP Theorem/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Glossary/CAP Theorem/1.png -------------------------------------------------------------------------------- /System Design/Glossary/Caching/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Glossary/Caching/1.png -------------------------------------------------------------------------------- /System Design/Glossary/Caching/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Glossary/Caching/2.png -------------------------------------------------------------------------------- /System Design/Glossary/Caching/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Glossary/Caching/3.png -------------------------------------------------------------------------------- /System Design/Glossary/Caching/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Glossary/Caching/4.png -------------------------------------------------------------------------------- /System Design/Glossary/Caching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Glossary/Caching/README.md -------------------------------------------------------------------------------- /System Design/Glossary/Indexes/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Glossary/Indexes/1.svg -------------------------------------------------------------------------------- /System Design/Glossary/Indexes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Glossary/Indexes/README.md -------------------------------------------------------------------------------- /System Design/Glossary/Proxies/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Glossary/Proxies/1.png -------------------------------------------------------------------------------- /System Design/Glossary/Proxies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Glossary/Proxies/README.md -------------------------------------------------------------------------------- /System Design/Glossary/Queues/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Glossary/Queues/1.png -------------------------------------------------------------------------------- /System Design/Glossary/Queues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Glossary/Queues/README.md -------------------------------------------------------------------------------- /System Design/Glossary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Glossary/README.md -------------------------------------------------------------------------------- /System Design/Problems/Basics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Basics/README.md -------------------------------------------------------------------------------- /System Design/Problems/Dropbox/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Dropbox/1.png -------------------------------------------------------------------------------- /System Design/Problems/Dropbox/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Dropbox/2.png -------------------------------------------------------------------------------- /System Design/Problems/Dropbox/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Dropbox/3.png -------------------------------------------------------------------------------- /System Design/Problems/Dropbox/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Dropbox/4.png -------------------------------------------------------------------------------- /System Design/Problems/Dropbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Dropbox/README.md -------------------------------------------------------------------------------- /System Design/Problems/Instagram/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Instagram/1.png -------------------------------------------------------------------------------- /System Design/Problems/Instagram/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Instagram/2.png -------------------------------------------------------------------------------- /System Design/Problems/Instagram/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Instagram/3.png -------------------------------------------------------------------------------- /System Design/Problems/Instagram/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Instagram/4.png -------------------------------------------------------------------------------- /System Design/Problems/Instagram/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Instagram/README.md -------------------------------------------------------------------------------- /System Design/Problems/Pastebin/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Pastebin/2.png -------------------------------------------------------------------------------- /System Design/Problems/Pastebin/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Pastebin/3.png -------------------------------------------------------------------------------- /System Design/Problems/Pastebin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Pastebin/README.md -------------------------------------------------------------------------------- /System Design/Problems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/README.md -------------------------------------------------------------------------------- /System Design/Problems/Ticketmaster/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Ticketmaster/1.png -------------------------------------------------------------------------------- /System Design/Problems/Ticketmaster/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Ticketmaster/10.png -------------------------------------------------------------------------------- /System Design/Problems/Ticketmaster/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Ticketmaster/11.png -------------------------------------------------------------------------------- /System Design/Problems/Ticketmaster/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Ticketmaster/2.png -------------------------------------------------------------------------------- /System Design/Problems/Ticketmaster/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Ticketmaster/3.png -------------------------------------------------------------------------------- /System Design/Problems/Ticketmaster/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Ticketmaster/4.png -------------------------------------------------------------------------------- /System Design/Problems/Twitter/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Twitter/1.png -------------------------------------------------------------------------------- /System Design/Problems/Twitter/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Twitter/2.png -------------------------------------------------------------------------------- /System Design/Problems/Twitter/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Twitter/3.png -------------------------------------------------------------------------------- /System Design/Problems/Twitter/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/Problems/Twitter/4.png -------------------------------------------------------------------------------- /System Design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/System Design/README.md -------------------------------------------------------------------------------- /tools/generate_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/tools/generate_readme.py -------------------------------------------------------------------------------- /tools/generate_secret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CrazySquirrel/Outtalent/HEAD/tools/generate_secret.py --------------------------------------------------------------------------------