|
3 | 3 | 
|
4 | 4 | [](./LICENSE.md)
|
5 | 5 | 
|
6 |
| - |
| 6 | + |
7 | 7 | [](https://saythanks.io/to/kamyu104)
|
8 | 8 | 
|
9 | 9 |
|
|
46 | 46 | * [Design](https://github.com/kamyu104/LeetCode-Solutions#design)
|
47 | 47 | * [Concurrency](https://github.com/kamyu104/LeetCode-Solutions#concurrency)
|
48 | 48 |
|
| 49 | +## JavaScript |
| 50 | + |
| 51 | +* [JavaScript](https://github.com/kamyu104/LeetCode-Solutions#javascript) |
| 52 | + |
49 | 53 | ## Database
|
50 | 54 |
|
51 | 55 | * [SQL](https://github.com/kamyu104/LeetCode-Solutions#sql)
|
|
1754 | 1758 | </div>
|
1755 | 1759 | <br/>
|
1756 | 1760 |
|
| 1761 | +## JavaScript |
| 1762 | +| # | Title | Solution | Time | Space | Difficulty | Tag | Note| |
| 1763 | +|-----|---------------- | --------------- | --------------- | --------------- | ------------- |--------------|-----| |
| 1764 | +2618 | [Check if Object Instance of Class](https://leetcode.com/problems/check-if-object-instance-of-class/) | [TypeScript](./TypeScript/check-if-object-instance-of-class.ts) | _O(n)_ | _O(1)_ | Medium | | | |
| 1765 | +2619 | [Array Prototype Last](https://leetcode.com/problems/array-prototype-last/) | [TypeScript](./TypeScript/array-prototype-last.ts) | _O(1)_ | _O(1)_ | Easy | | | |
| 1766 | +2620 | [Counter](https://leetcode.com/problems/counter/) | [TypeScript](./TypeScript/counter.ts) | _O(1)_ | _O(1)_ | Easy | | | |
| 1767 | +2621 | [Sleep](https://leetcode.com/problems/sleep/) | [TypeScript](./TypeScript/sleep.ts) | _O(1)_ | _O(1)_ | Easy | | | |
| 1768 | +2622 | [Cache With Time Limit](https://leetcode.com/problems/cache-with-time-limit/) | [TypeScript](./TypeScript/cache-with-time-limit.ts) | _O(1)_ | _O(1)_ | Easy | | | |
| 1769 | +2623 | [Memoize](https://leetcode.com/problems/memoize/) | [TypeScript](./TypeScript/memoize.ts) | _O(1)_ | _O(1)_ | Easy | | Hash Tablle | |
| 1770 | +2624 | [Snail traversal](https://leetcode.com/problems/snail-traversal/) | [TypeScript](./TypeScript/snail-traversal.ts) | _O(m * n)_ | _O(1)_ | Medium | | | |
| 1771 | +2625 | [Flatten Deeply Nested Array](https://leetcode.com/problems/flatten-deeply-nested-array/) | [TypeScript](./TypeScript/flatten-deeply-nested-array.ts) | _O(n)_ | _O(h)_ | Medium | | | |
| 1772 | +2626 | [Array Reduce Transformation](https://leetcode.com/problems/array-reduce-transformation/) | [TypeScript](./TypeScript/array-reduce-transformation.ts) | _O(n)_ | _O(1)_ | Easy | | | |
| 1773 | +2627 | [Debounce](https://leetcode.com/problems/debounce/) | [TypeScript](./TypeScript/debounce.ts) | _O(1)_ | _O(1)_ | Medium | | | |
| 1774 | +2628 | [JSON Deep Equal](https://leetcode.com/problems/json-deep-equal/) | [TypeScript](./TypeScript/json-deep-equal.ts) | _O(n)_ | _O(h)_ | Medium | | DFS | |
| 1775 | +2629 | [Function Composition](https://leetcode.com/problems/function-composition/) | [TypeScript](./TypeScript/function-composition.ts) | _O(n)_ | _O(1)_ | Easy | | | |
| 1776 | +2630 | [Memoize II](https://leetcode.com/problems/memoize-ii/) | [TypeScript](./TypeScript/memoize-ii.ts) | _O(n)_ | _O(t)_ | Hard | | Trie | |
| 1777 | +2631 | [Group By](https://leetcode.com/problems/group-by/) | [TypeScript](./TypeScript/group-by.ts) | _O(n)_ | _O(n)_ | Medium | | | |
| 1778 | +2632 | [Curry](https://leetcode.com/problems/curry/) | [TypeScript](./TypeScript/curry.ts) | _O(n)_ | _O(n)_ | Medium | | | |
| 1779 | +2633 | [Convert Object to JSON String](https://leetcode.com/problems/convert-object-to-json-string/) | [TypeScript](./TypeScript/convert-object-to-json-string.ts) | _O(n)_ | _O(n)_ | Medium | | DFS | |
| 1780 | +2634 | [Filter Elements from Array](https://leetcode.com/problems/filter-elements-from-array/) | [TypeScript](./TypeScript/filter-elements-from-array.ts) | _O(n)_ | _O(1)_ | Easy | | | |
| 1781 | +2635 | [Apply Transform Over Each Element in Array](https://leetcode.com/problems/apply-transform-over-each-element-in-array/) | [TypeScript](./TypeScript/apply-transform-over-each-element-in-array.ts) | _O(n)_ | _O(1)_ | Easy | | | |
| 1782 | +2636 | [Promise Pool](https://leetcode.com/problems/apply-transform-over-each-element-in-array/) | [TypeScript](./TypeScript/apply-transform-over-each-element-in-array.ts) | _O(n / c)_ | _O(c)_ | Easy | | | |
| 1783 | +2637 | [Promise Time Limit](https://leetcode.com/problems/promise-time-limit/) | [TypeScript](./TypeScript/promise-time-limit.ts) | _O(n)_ | _O(1)_ | Medium | | | |
| 1784 | + |
| 1785 | +<br/> |
| 1786 | +<div align="right"> |
| 1787 | + <b><a href="#algorithms">⬆️ Back to Top</a></b> |
| 1788 | +</div> |
| 1789 | +<br/> |
| 1790 | + |
1757 | 1791 | ## SQL
|
1758 | 1792 | | # | Title | Solution | Time | Space | Difficulty | Tag | Note|
|
1759 | 1793 | |-----|---------------- | --------------- | --------------- | --------------- | ------------- |--------------|-----|
|
|
0 commit comments