Skip to content

Instantly share code, notes, and snippets.

View souravCoder1's full-sized avatar
💻
Focusing

Sourav souravCoder1

💻
Focusing
  • Senior Software Engineer
  • moving around the world
  • 02:35 (UTC -04:00)
View GitHub Profile
package week4;
import java.util.ArrayList;
import java.util.List;
/**
* Represents an immutable polynomial with integer coefficients (and a single
* indeterminate "x"). A typical polynomial is 5x^2 + 3x + 2.
*/
public class Polynomial {
@souravCoder1
souravCoder1 / System Design.md
Created February 26, 2021 17:23 — forked from vasanthk/System Design.md
System Design Cheatsheet

System Design Cheatsheet

Picking the right architecture = Picking the right battles + Managing trade-offs

Basic Steps

  1. Clarify and agree on the scope of the system
  • User cases (description of sequences of events that, taken together, lead to a system doing something useful)
    • Who is going to use it?
    • How are they going to use it?