Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jaredsburrows/cs-interview-questions
Personal Solutions to Interview Questions
https://github.com/jaredsburrows/cs-interview-questions
algorithms computer-science cracking-the-coding-interview groovy interview-questions java kotlin leetcode
Last synced: 2 months ago
JSON representation
Personal Solutions to Interview Questions
- Host: GitHub
- URL: https://github.com/jaredsburrows/cs-interview-questions
- Owner: jaredsburrows
- License: apache-2.0
- Created: 2013-07-20T19:03:46.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-11-08T13:32:31.000Z (2 months ago)
- Last Synced: 2024-11-08T14:30:00.630Z (2 months ago)
- Topics: algorithms, computer-science, cracking-the-coding-interview, groovy, interview-questions, java, kotlin, leetcode
- Language: Java
- Homepage: https://jaredsburrows.github.io/cs-interview-questions/
- Size: 4.84 MB
- Stars: 64
- Watchers: 5
- Forks: 14
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# CS Interview Practice
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
[![build](https://github.com/jaredsburrows/cs-interview-questions/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/jaredsburrows/cs-interview-questions/actions/workflows/build.yml)
[![Twitter Follow](https://img.shields.io/twitter/follow/jaredsburrows.svg?style=social)](https://twitter.com/jaredsburrows)This is a collection of my personal solutions to practice interview questions. The repository is built using Gradle for continuous integration and delivery.
## [Code Eval](https://codeeval.com) (Now defunct)
- **My Profile:** https://codeeval.com/profile/jaredsburrows/
- **My Solutions:** [java/src/main/java/codeeval](java/src/main/java/codeeval)## [Coding Bat](https://codingbat.com)
- **My Solutions:** [java/src/main/java/codingbat](java/src/main/java/codingbat)## [Cracking The Code Interview](https://careercup.com/book)
- **Github:** https://github.com/gaylemcd/ctci
- **My Solutions:** [java/src/main/java/crackingthecode](java/src/main/java/crackingthecode)## My [Github](https://github.com/jaredsburrows)
## [Leet Code](https://leetcode.com)
- **My Solutions:** [java/src/main/java/leetcode](java/src/main/java/leetcode)## [Project Euler](https://projecteuler.net)
- **My Solutions:** [java/src/main/java/projecteuler](java/src/main/java/projecteuler)
## Common questions
- **My Solutions:** [java/src/main/java/questions](java/src/main/java/questions)## [Stack Overflow](https://stackoverflow.com)
## Others resources used
- [Big O Cheat Sheet](https://www.bigocheatsheet.com/)
- [Geeks For Geeks](https://www.geeksforgeeks.org/)
- [Glassdoor](https://www.glassdoor.com/index.htm)
- [Hacker Rank](https://www.hackerrank.com/)
- [Leetcode](https://leetcode.com/)
- [Program Creek](https://www.programcreek.com/)
- https://programcreek.com/2012/11/top-10-algorithms-for-coding-interview
- [Top Coder](https://www.topcoder.com/)## Languages used
- **C** - [c/src/main/c](c/src/main/c)
- **C++** - [cpp/src/main/cpp](cpp/src/main/cpp)
- **Groovy** - [java/src/test/groovy](java/src/test/groovy)
- **Java** - [java/src/main/java](java/src/main/java)
- **Kotlin** - [java/src/main/kotlin](java/src/main/kotlin)
- **Python** - [python/src/main/python](python/src/main/python)## Testing frameworks used
- **[CUnit](https://cunit.sourceforge.net)** - for C
- **[GTest](https://github.com/google/googletest)** - for C++
- **[Spek](https://github.com/spekframework/spek)** - for Kotlin
- **[Spock](https://github.com/spockframework/spock)** - for Java and Groovy## License
```
Copyright (C) 2015 Jared BurrowsLicensed 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 athttps://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.
```