https://github.com/taishikato/leetcode
My LeetCode Problems' Answers
https://github.com/taishikato/leetcode
codewars leetcode
Last synced: about 2 months ago
JSON representation
My LeetCode Problems' Answers
- Host: GitHub
- URL: https://github.com/taishikato/leetcode
- Owner: taishikato
- Created: 2020-02-27T19:30:40.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-16T19:18:07.000Z (over 5 years ago)
- Last Synced: 2025-05-30T06:22:02.667Z (10 months ago)
- Topics: codewars, leetcode
- Homepage:
- Size: 103 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LeetCode and Codewars 🔥
### LeetCode
| # | Title | Solution | Difficulty |Others|
|---| ----- | -------- | ---------- |---------|
|1|[Two Sum](https://leetcode.com/problems/two-sum/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/1.two-sum.md)|Easy|
|2|:skull: [Add Two Numbers](https://leetcode.com/problems/add-two-numbers/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/2.add-two-numbers.md)|*Medium*|Linked List|
|4|[Median of Two Sorted Arrays](https://leetcode.com/problems/median-of-two-sorted-arrays/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/4.median-of-two-sorted-arrays.md)|**Hard**|
|7|[Reverse Integer](https://leetcode.com/problems/reverse-integer/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/7.reverse-integer.md)|Easy|
|8|[String to Integer (atoi)](https://leetcode.com/problems/string-to-integer-atoi/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/8.string-to-integer-atoi.md)|*Medium*|
|9|[Palindrome Number](hhttps://leetcode.com/problems/palindrome-number/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/9.palindrome-number.md)|easy|
|14|[Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/14.longest-common-prefix.md)|Easy|
|20|[Valid Parentheses](https://leetcode.com/problems/valid-parentheses/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/20.valid-parentheses.md)|Easy|
|26|[Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/26.remove-duplicates-from-sorted-array.md)|Easy|
|28|[Implement strStr()](https://leetcode.com/problems/implement-strstr/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/28.implement-strstr.md)|Easy|
|53|:skull: [Maximum Subarray](https://leetcode.com/problems/maximum-subarray/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/53.maximum-subarray.md)|Easy|
|66|[Plus One](https://leetcode.com/problems/plus-one/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/66.plus-one.md)|Easy|
|69|[Sqrt(x)](https://leetcode.com/problems/sqrtx/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/69.sqrtx.md)|Easy|
|88|[Merge Sorted Array](https://leetcode.com/problems/merge-sorted-array/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/88.merge-sorted-array.md)|Easy|
|101|:skull: [Symmetric Tree](https://leetcode.com/problems/symmetric-tree/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/101.symmetric-tree.md)|Easy|Binary Tree🌳|
|121|[Best Time to Buy and Sell Stock](https://leetcode.com/problems/best-time-to-buy-and-sell-stock/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/121.best-time-to-buy-and-sell-stoc.md)|Easy|
|125|[Valid Palindrome](https://leetcode.com/problems/valid-palindrome/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/125.valid-palindrome.md)|Easy|
|136|[Single Number](https://leetcode.com/problems/single-number/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/136.single-number.md)|Easy|
|141|:skull: [Linked List Cycle](https://leetcode.com/problems/linked-list-cycle/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/141.linked-list-cycle.md)|Easy|Linked List, Two Pointers|
|160|:skull: [Intersection of Two Linked Lists](https://leetcode.com/problems/intersection-of-two-linked-lists/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/160.intersection-of-two-linked-lists.md)|Easy|Linked List, Two Pointers|
|169|[Majority Element](https://leetcode.com/problems/majority-element/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/169.majority-element.md)|Easy|
|171|:skull: [Excel Sheet Column Number](https://leetcode.com/problems/excel-sheet-column-number/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/171.excel-sheet-column-number.md)|Easy|
|206|:skull: [Reverse Linked List](https://leetcode.com/problems/reverse-linked-list/)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/problems/206.reverse-linked-list.md)|Easy|Linked List|
### CodeSignal
| # | Title | Solution | Difficulty |Others|
|---| ----- | -------- | ---------- |---------|
|1|:skull: [rotateImage](https://app.codesignal.com/interview-practice/task/5A8jwLGcEpTPyyjTB/drafts)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/codesignal/rotateImage.md)|Easy|Arrays|
|2|:skull: [singleNumber](https://app.codesignal.com/interview-practice/task/APDXraJZYfPSYqQMJ/description)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/codesignal/singleNumber.md)|Easy|XOR|
|3|[containsCloseNums](https://app.codesignal.com/interview-practice/task/njfXsvjRthFKmMwLC/description)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/codesignal/containsCloseNums.md)|*Medium*|Hash Table|
|4|:skull: [decodeString](https://app.codesignal.com/interview-practice/task/dYCH8sdnxGf5aGkez/description)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/codesignal/decodeString.md)|Easy|Heaps, Stacks, Queues|
|5|:skull: [findProfession](https://app.codesignal.com/interview-practice/task/FwAR7koSB3uYYsqDp/description)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/codesignal/findProfession.md)|Easy|Trees|
|6|[mergeTwoLinkedLists](https://app.codesignal.com/interview-practice/task/6rE3maCQwrZS3Mm2H/description)|[JavaScript](https://github.com/taishikato/leetcode/blob/master/codesignal/mergeTwoLinkedLists.md)|*Medium*|Linked List|