@@ -73,8 +73,6 @@ My solutions to competitive programming problems in [Geeks for Geeks](https://au
73
73
74
74
75
75
76
-
77
-
78
76
## Array or Vector
79
77
80
78
| Name | Solution |
@@ -83,10 +81,14 @@ My solutions to competitive programming problems in [Geeks for Geeks](https://au
83
81
| Count 1s in sorted array| [ C++] ( c++/count-1-in-sorted-array.cpp ) |
84
82
| Search in sorted array| [ C++] ( c++/search-in-sorted-array.cpp ) |
85
83
| Insert at end of array| [ C++] ( c++/array-insert-at-end.cpp ) |
84
+ | Remove duplicate elements| [ C++] ( c++/remove-duplicate-elements.cpp ) |
86
85
| Search element in array| [ C++] ( c++/search0an0element-in-an-array.cpp ) |
87
86
| Check if two arrays are equals| [ C++] ( c++/check-if-two-arrays-are-equals.cpp ) |
88
87
| Generate Permutation(single case example)| [ C++] ( c++/generate-permutation.cpp ) |
89
88
| Min and max element| [ C++] ( c++/max-and-mimum.cpp ) |
89
+ | Is array sorted| [ C++] ( c++/is-array-sorted.cpp ) |
90
+ | Array insert at index| [ C++] ( c++/array-insert-at-index.cpp ) |
91
+ | Merge two sorted arrays O(1) space | [ C++] ( c++/merge-two-sorted-arrays.cpp ) |
90
92
| Union of two sorted array| [ C++] ( c++/union-of-two-sorted-arrays-1587115621.cpp ) |
91
93
| Index of an extra element| [ C++] ( c++/index-of-an-extra-element.cpp ) |
92
94
| Binary array sorting| [ C++] ( c++/binary-array-sorting.cpp ) |
@@ -253,7 +255,7 @@ My solutions to competitive programming problems in [Geeks for Geeks](https://au
253
255
| Reverse string using Stack| [ C++] ( c++/reverse-string-with-stack.cpp ) |
254
256
| Implement stack with array| [ C++] ( c++/stack-implementation-with-array.cpp ) |
255
257
| Implement stack using Linked List| [ C++] ( c++/implement-stack-using-linked-list.cpp ) |
256
-
258
+ | Sort a stack | [ C++ ] ( c++/sort-a-stack.cpp ) |
257
259
258
260
259
261
## Queue and Dequeu
0 commit comments