All Projects → krlv → ctci-go

krlv / ctci-go

Licence: other
Cracking the Coding Interview in Go

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to ctci-go

ctci-python-solutions
Cracking the Coding Interview in Python 3. The solutions all have detailed explanations with visuals.
Stars: ✭ 1,062 (+3325.81%)
Mutual labels:  cracking-the-coding-interview, interview-practice, interview-questions, interview-preparation
Awesome Coding Interview Question Patterns
The most common question-patterns for any coding-interview
Stars: ✭ 196 (+532.26%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
Interviewguide
《大厂面试指北》——包括Java基础、JVM、数据库、mysql、redis、计算机网络、算法、数据结构、操作系统、设计模式、系统设计、框架原理。最佳阅读地址:http://notfound9.github.io/interviewGuide/
Stars: ✭ 3,117 (+9954.84%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
Algorithmic-Problem-Solving
Solutions of algorithmic type of programming problems from sites like LeetCode.com, HackerRank.com, LeetCode.com, Codility.com, CodeForces.com, etc. using Java.
Stars: ✭ 20 (-35.48%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
Leetcode Python
LeetCode solutions in Python2. LeetCode题解 in Python2。
Stars: ✭ 182 (+487.1%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
Interview Questions
List of all the Interview questions practiced from online resources and books
Stars: ✭ 187 (+503.23%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
pw
Best websites a Programmer should visit
Stars: ✭ 27 (-12.9%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
Daily coding problem
Solutions to https://dailycodingproblem.com
Stars: ✭ 137 (+341.94%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
Tech Interview Handbook
💯 Curated interview preparation materials for busy engineers
Stars: ✭ 64,851 (+209096.77%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
TheJobInterviewGuide
A job guide to help developers get through interviews and get amazing jobs!
Stars: ✭ 267 (+761.29%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
CPPNotes
【C++ 面试 + C++ 学习指南】 一份涵盖大部分 C++ 程序员所需要掌握的核心知识。
Stars: ✭ 557 (+1696.77%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
counter-interview.dev
a collaborative collection of interview questions collected from both sides of the game: Interviewer(s) and Interviewee.
Stars: ✭ 102 (+229.03%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
Leetcode Solutions
🏋️ Python / Modern C++ Solutions of All 2111 LeetCode Problems (Weekly Update)
Stars: ✭ 2,787 (+8890.32%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
Interview Preparations
This repository contains coding assessments and their solutions for various IT companies
Stars: ✭ 148 (+377.42%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
codewars python solutions
My CodeWars solutions in Python.
Stars: ✭ 111 (+258.06%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
System Design Interview Questions
A curated list of System Design interview questions for SDE-1 (Experienced),SDE-2 and above.
Stars: ✭ 205 (+561.29%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
Android Interview Questions
Android interview questions with answers. This repo is suitable for an interviewer, interviewee, and for everyone who wants to improve their knowledge skills about android topics.
Stars: ✭ 125 (+303.23%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
Leetcode Sol Res
Clean, Understandable Solutions and Resources for LeetCode Online Judge Algorithm Problems.
Stars: ✭ 1,647 (+5212.9%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
Interviews
Everything you need to know to get the job.
Stars: ✭ 54,875 (+176916.13%)
Mutual labels:  interview-practice, interview-questions, interview-preparation
dailycodingproblem
Solutions to Daily Coding Problem questions
Stars: ✭ 26 (-16.13%)
Mutual labels:  interview-practice, interview-questions, interview-preparation

Cracking the Coding Interview in Go

Solving programming questions from "Cracking the Coding Interview 6th Edition" by Gayle Laakmann McDowell. In Go.

Chapter 1: Arrays and Strings

# Problem Tested Solved
1.1 Is Unique tests
1.2 Check Permutation tests
1.3 URLify tests
1.4 Palindrome Permutation tests
1.5 One Away tests
1.6 String Compression tests
1.7 Rotate Matrix tests
1.8 Zero Matrix tests
1.9 String Rotation tests

Chapter 2: Linked List

# Problem Tested Solved
2.1 Remove Sups tests
2.2 Return kth to Last tests
2.3 Delete Middle Node tests
2.4 Partition tests
2.5 Sum Lists tests
2.6 Palindrome tests
2.7 Intersection tests
2.8 Loop Detection tests

Chapter 3: Stacks and Queues

Stack implementation (with Linked List as a storage); tests

Queue implementation (with Linked List as a storage); tests

Fixed (capped) Stack implementation (with Linked List as a storage); tests

# Problem Tested Solved
3.1 Three in one tests
3.2 Stack Min tests
3.3 Stack of Plates tests
3.4 Queue via Stacks tests
3.5 Sort Stack tests
3.6 Animal Shelter tests
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].