Skip to content

Commit 40df70d

Browse files
adds questions and links in the readme
1 parent 4354892 commit 40df70d

File tree

1 file changed

+42
-13
lines changed

1 file changed

+42
-13
lines changed

README.md

Lines changed: 42 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https://github.com/anishLearnsToCode/leetcode-algorithms)
44
![made-with-java](https://img.shields.io/badge/Made%20with-Java-1f425f.svg)
55
![made-with-python](https://img.shields.io/badge/Made%20with-Python-1f425f.svg)
6-
![problems-solved](https://img.shields.io/badge/Problems%20Solved-9/424-1abc9c.svg)
7-
![problems-solved-java](https://img.shields.io/badge/Java-9/424-1abc9c.svg)
8-
![problems-solved-python](https://img.shields.io/badge/Python-1/424-1abc9c.svg)
6+
![problems-solved](https://img.shields.io/badge/Problems%20Solved-12/424-1abc9c.svg)
7+
![problems-solved-java](https://img.shields.io/badge/Java-12/424-1abc9c.svg)
8+
![problems-solved-python](https://img.shields.io/badge/Python-2/424-1abc9c.svg)
99
[![license](https://img.shields.io/badge/LICENSE-MIT-<COLOR>.svg)](LICENSE)
10-
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](CONTRIBUTING.md)
10+
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](CONTRIBUTING.md)
1111

1212
## Problems
1313
| # Number | Name | Difficulty | Solution |
@@ -24,12 +24,41 @@
2424
| 28 | [Needle in Haystack](https://leetcode.com/problems/implement-strstr) | Easy | [![Java](https://img.icons8.com/color/40/000000/java-coffee-cup-logo.png)](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/NeedleInHaystack.java) [![Python](https://img.icons8.com/color/35/000000/python.png)](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/python/needle_in_haystack.py)|
2525
| 35 | [Search Inserted Position](https://leetcode.com/problems/search-insert-position/) | Easy | [![Java](https://img.icons8.com/color/40/000000/java-coffee-cup-logo.png)](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/SearchInsertPosition.java) |
2626
| 38 | [Count and Say](https://leetcode.com/problems/count-and-say) | Easy | [![Java](https://img.icons8.com/color/40/000000/java-coffee-cup-logo.png)](https://github.com/anishLearnsToCode/leetcode-algorithms/blob/master/src/CountAndSay.java) |
27-
| 2 | []() | Easy | |
28-
| 2 | []() | Easy | |
29-
| 2 | []() | Easy | |
30-
| 2 | []() | Easy | |
31-
| 2 | []() | Easy | |
32-
| 2 | []() | Easy | |
33-
| 2 | []() | Easy | |
34-
| 2 | []() | Easy | |
35-
| 2 | []() | Easy | |
27+
| 53 | [Maximum SubArray](https://leetcode.com/problems/maximum-subarray) | Easy | |
28+
| 58 | [Length of Last Word](https://leetcode.com/problems/length-of-last-word) | Easy | |
29+
| 66 | [Plus One](https://leetcode.com/problems/plus-one) | Easy | |
30+
| 67 | [Add Binary](https://leetcode.com/problems/add-binary) | Easy | |
31+
| 69 | [Sqrt(x)](https://leetcode.com/problems/sqrtx) | Easy | |
32+
| 70 | [Climbing Stairs](https://leetcode.com/problems/climbing-stairs) | Easy | |
33+
| 83 | [Remove Duplicates from Sorted List](https://leetcode.com/problems/remove-duplicates-from-sorted-list) | Easy | |
34+
| 88 | [Merge Sorted Array](https://leetcode.com/problems/merge-sorted-array) | Easy | |
35+
| 100 | [Same Tree](https://leetcode.com/problems/same-tree) | Easy | |
36+
| 101 | [Symmetric Tree](https://leetcode.com/problems/symmetric-tree) | Easy | |
37+
| 104 | [Maximum Depth of Binary Tree](https://leetcode.com/problems/maximum-depth-of-binary-tree) | Easy |
38+
| 107 | [Binary Tree Level Order Traversal II](https://leetcode.com/problems/binary-tree-level-order-traversal-ii) | Easy |
39+
| 108 | [Convert Sorted Array To Binary Search Tree](https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree) | Easy |
40+
| 110 | [Balanced Binary Tree](https://leetcode.com/problems/balanced-binary-tree) | Easy |
41+
| 111 | [Minimum Depth of Binary Tree](https://leetcode.com/problems/minimum-depth-of-binary-tree) | Easy |
42+
| 112 | [Path Sum](https://leetcode.com/problems/path-sum) | Easy |
43+
| 118 | [Pascal's Triangle](https://leetcode.com/problems/pascals-triangle) | Easy |
44+
| 119 | [Pascal's Triangle II](https://leetcode.com/problems/pascals-triangle-ii) | Easy |
45+
| 121 | [Best Time to Buy and Sell Stocks](https://leetcode.com/problems/best-time-to-buy-and-sell-stock) | Easy |
46+
| 122 | [Best Time to Buy and Sell Stocks II](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii) | Easy |
47+
| 125 | [Valid Palindrome](https://leetcode.com/problems/valid-palindrome) | Easy |
48+
| 136 | [Single Number](https://leetcode.com/problems/single-number) | Easy |
49+
| 141 | [Linked List Cycle](https://leetcode.com/problems/linked-list-cycle) | Easy |
50+
| 155 | [Min Stack](https://leetcode.com/problems/min-stack) | Easy |
51+
| 157 | [Read N Characters Given Read4](https://leetcode.com/problems/read-n-characters-given-read4) | Easy |
52+
| 160 | [Intersection of Two Linked Lists](https://leetcode.com/problems/intersection-of-two-linked-lists) | Easy |
53+
| 167 | [Two Sum II - Input Array is Sorted](https://leetcode.com/problems/two-sum-ii-input-array-is-sorted) | Easy |
54+
| 168 | [Excel Sheet Column Title](https://leetcode.com/problems/excel-sheet-column-title) | Easy |
55+
| 169 | [Majority Element](https://leetcode.com/problems/majority-element) | Easy |
56+
| 170 | [Two Sum III - Data Structure Design](https://leetcode.com/problems/two-sum-iii-data-structure-design) | Easy |
57+
| 171 | [Excel Sheet Column Number](https://leetcode.com/problems/excel-sheet-column-number) | Easy |
58+
| 172 | [Factoring Trailing Zeroes](https://leetcode.com/problems/factorial-trailing-zeroes) | Easy |
59+
| 189 | [Rotate Array](https://leetcode.com/problems/rotate-array) | Easy |
60+
| 190 | [Reverse Bits](https://leetcode.com/problems/reverse-bits) | Easy |
61+
| 191 | [Number of One Bits](https://leetcode.com/problems/number-of-1-bits) | Easy |
62+
| 198 | [House Robber](https://leetcode.com/problems/house-robber) | Easy |
63+
| 202 | [Happy Number](https://leetcode.com/problems/happy-number) | Easy |
64+
| 203 | [Remove Linked List Elements](https://leetcode.com/problems/remove-linked-list-elements) | Easy |

0 commit comments

Comments
 (0)