https://github.com/malekkamel/problemsolving
This repository contains the solutions of coding challenges I solve or pick from the top solutions.
https://github.com/malekkamel/problemsolving
Last synced: 4 months ago
JSON representation
This repository contains the solutions of coding challenges I solve or pick from the top solutions.
- Host: GitHub
- URL: https://github.com/malekkamel/problemsolving
- Owner: MalekKamel
- Created: 2021-02-24T19:12:09.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-05-09T17:52:34.000Z (5 months ago)
- Last Synced: 2025-05-09T18:52:16.063Z (5 months ago)
- Language: Kotlin
- Size: 20.3 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kotlin Problem Solving Solutions
This repository contains solutions to various coding problems and algorithmic challenges,
all implemented in the Kotlin programming language.## Overview
This repository includes solutions to common data structures and algorithm problems, covering topics such as:
- Arrays
- Linked Lists
- Stacks and Queues
- Trees and Graphs
- Sorting and Searching
- Dynamic Programming
- and moreEach solution is self-contained and can be run independently. The repository is organized by topic,
with each problem solution located in its own directory. Each solution is organized to contain:1. A comment with the description of the problem and the URL of the problem if found.
2. A main function with one or more examples that can be run to verify the output or for the purpose
of debugging and tracking the flow.The directory structure and file organization should make it easy for anyone to navigate
the repository and understand the purpose of each solution.## Getting Started
To get started, you'll need to have Kotlin installed on your system. You can download the latest
version of Kotlin from the official website: [https://kotlinlang.org/](https://kotlinlang.org/)Once you have Kotlin installed, you can clone this repository and start exploring the solutions
```bash
git clone https://github.com/ShabanKamell/ProblemSolving
cd ProblmSolving
```## Resources
- [ ] `mostafa`: The solutions of [Mastering critical SKILLS for Coding Interviews C++: Part 1](https://www.udemy.com/course/skills-coding-interviews/?couponCode=LETSLEARNNOWPP)
- [ ] `cracking_coding_interview`: The solutions of [Cracking the Coding Interview](https://www.amazon.eg/-/en/Cracking-Coding-Interview-Programming-Questions/dp/0984782850)
- [ ] `educative_grokking_coding_interview`: The solutions of [Grokking Coding Interview Patterns in Java](https://www.educative.io/courses/grokking-coding-interview-patterns-java)## IDE
Any IDE supporting Java or Kotlin language. I use [IntelliJ IDEA CE](https://www.jetbrains.com/idea/).
Of course you're free to use any IDE like [NetBeans](https://netbeans.org/)
or others.### 🛡 License
Click to reveal License
```
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```