Skip to content

Instantly share code, notes, and snippets.

View minsik-ai's full-sized avatar
🏠
Working from home

Minsik minsik-ai

🏠
Working from home
View GitHub Profile
@minsik-ai
minsik-ai / The Technical Interview Cheat Sheet.md
Last active May 24, 2017 18:25 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

Studying for a Tech Interview Sucks, so Here's a Cheat Sheet to Help

This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.

Data Structure Basics

Array

Definition:

  • Stores data elements based on an sequential, most commonly 0 based, index.
  • Based on tuples from set theory.
@minsik-ai
minsik-ai / Jetbrains IDE Essential Shortcuts.md
Last active February 18, 2021 04:50
Essential Shortcuts for Jetbrains IDEs, including IntelliJ IDEA, Android Studio & others.

Jetbrains IDE Essential Shortcuts

This is a list of Jetbrains IDE shortcuts I use everyday.

Comments welcome! Tell me your favorites.

Navigating Between Windows

Change Focus to Window

Programming in Scala

Chapter 4

클래스 및 멤버

**클래스(Class)**는 다음과 같이 생성할 수 있다.

class ChecksumAccumulator {

Programming in Scala

Chapter 3

배열 초기화

객체를 인스턴스화(생성)할때, 값과 타입을 파라미터로 넘길 수 있다. 이를 인스턴스를 **파라미터화(parameterization)**한다고 한다. 다음 코드는 "12345"라는 값으로 새로운 java.math.BigInteger 인스턴스를 파라미터화 한 것이다.

val big = new java.math.BigInteger("12345")
@minsik-ai
minsik-ai / programming-in-scala-intro.md
Created December 11, 2016 03:32
Programming in Scala의 한글 요약 ~Chapter2. https://github.com/trent-92/Programming-in-Scala

Programming in Scala

Chapter 1

왜 스칼라인가?

  • 호환성
  • 간결성
  • 고수준 추상화
  • 고급 정적 타이핑
@minsik-ai
minsik-ai / README.md
Created November 22, 2016 06:39 — forked from hofmannsven/README.md
My simply Git Cheatsheet