- "Algorithms!!???",
- "Jesus, why I realized this after almost 8 years from the first time I learned data structures and algorithms"
See, this is another example of THINK INSIDE.
- "Algorithms!!???",
- "Jesus, why I realized this after almost 8 years from the first time I learned data structures and algorithms"
See, this is another example of THINK INSIDE.
- "Is there any certain way to think about it?",
- "How can I think in the way computers think when facing a problem?",
- "What's the input of a problem, and how to present the input?",
- "Ahh! Data structures are the understandable data source?",
- "Is there any certain way to think about it?",
- "How can I think in the way computers think when facing a problem?",
- "What's the input of a problem, and how to present the input?",
- "Ahh! Data structures are the understandable data source?",
- Make my phone dumb
- Buy a lovely notebook
- Keep the laptop in the bag in class
- Make my phone dumb
- Buy a lovely notebook
- Keep the laptop in the bag in class
Jeanette Winterson said in her book, Why Be Happy When You Could Be Normal, that
Jeanette Winterson said in her book, Why Be Happy When You Could Be Normal, that
const a = { one: 1 }
const b = a
a.one = 2
console.log(b)
People with container/bucket model may say b is { one: 1 } , but people with wire/label model can give { one: 2 } without any hesitation.
const a = { one: 1 }
const b = a
a.one = 2
console.log(b)
People with container/bucket model may say b is { one: 1 } , but people with wire/label model can give { one: 2 } without any hesitation.