Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thearyanahmed/libsandbox

This is a repository where I put random code, whether it's related to problem solving or an article about kubernetes or redis or Go or something else.
https://github.com/thearyanahmed/libsandbox

golang kubernetes leetcode postgresql redis rust

Last synced: about 1 month ago
JSON representation

This is a repository where I put random code, whether it's related to problem solving or an article about kubernetes or redis or Go or something else.

Awesome Lists containing this project

README

        

# LibSandbox

This is a repository where I put random code, whether it's problem solving or an article about kubernetes or something else. This is called LibSandbox, lib indicating library and sandbox for tinkering with anything and everything that I find interesting.

If anything interests you, feel free to use it/ clone it/update it.

### Postgres
- [PostgreSql](postgres/README.md)

### Kafka
- [Building Scalable Data Pipelines with Kafka](kafka/README.md)

### Redis
- [Redis Clustering](redis/README.md)

### Kubernetes
- [Cluster architecture and general notes](kubernetes/README.md)

### Data structure & Algorithms
- [rust](rust/src)
- [remove nth element](go/linked_list/19_remove_nth_element_from_the_last.go)
- [LRU cache](go/linked_list/146_LRU_cache.go)
- [LRU cache 2](go/linked_list/146_2_LRU_cache.go)
- [Merge in between](go/linked_list/1669_merge_in_between.go)
- [Swapping nodes](go/linked_list/1721_swaping_nodes.go)
- [Contains duplicate](rust/src/leetcode/contains_duplicate.rs)
- [Duplicate zeros](rust/src/leetcode/duplicate_zeros.rs)
- [Find numbers with even number of digits](rust/src/leetcode/find_numbers_with_even_number_of_digits.rs)
- [Group anagram](rust/src/leetcode/group_anagrams.rs)
- [Majority elements](rust/src/leetcode/majority_element.rs)
- [Max consecutive ones](rust/src/leetcode/max_consecutive_ones.rs)
- [Merge sorted array](rust/src/leetcode/merge_sorted_array.rs)
- [Single number](rust/src/leetcode/single_number.rs)
- [Three sum](rust/src/leetcode/three_sum.rs)
- [Squares of a sorted array](rust/src/leetcode/squares_of_a_sorted_array.rs)
- [Top K Frequent](rust/src/leetcode/top_k_frequent.rs)
- [Valid anagram](rust/src/leetcode/valid_anagram.rs)
- [Merge in between](go/linked_list/leetcode_1669_merge_in_between.go)
- [Remove Nth Node From End of List](go/linked_list/19_remove_nth_element_from_the_last.go)
- [Swapping Nodes in a Linked List](go/linked_list/1721_swaping_nodes.go)
- [Square root](go/binary_search/square_root.go)
- [Search in 2d matrix](go/binary_search/search_in_2d_matrix.go)
- [Koko eating bananas](go/binary_search/koko_eating_bananas.go)
- [Product of array except self](go/array/product_of_array_except_self.go)
- [Longest consecutive sequence](go/array/longest_consecutive_sequence.go)
- [Implement Time based key value store](go/binary_search/time_based_key_value_store.go)
- [Is valid palindrome I](go/two_pointers/valid_palindrome_i.go)
- [Is valid palindrome II](go/two_pointers/valid_palindrome_ii.go)
- [Two Sum](go/binary_search/two_sum.go)
- [Container with most water](go/two_pointers/container_with_most_water.go)
- [Trapping rain water](go/two_pointers/trapping_rain_water.go)
- [Reverse Linked List - I](go/linked_list/reverse_linked_list_i.go)
- [go](go/array)
- [Rotate array by N](go/array/rotate_array.go)
- [Reverse array](go/array/reverse_array.go)
- [Rotate counter clockwise](go/array/rotate_counter_clock_wise.go)
- [Cyclic Rotation](go/array/cyclic_rotate.go)
- [Bubble sort O(n^2)](go/array/bubble_sort.go)
- [Merge sort O(nLogn)](go/array/merge_sort.go)
- [Insertion sort O(n^2)](go/array/insertion_sort.go)
- [Selection sort O(n^2)](go/array/selection_sort.go)