SQL Resources
SQL teaching
SQL Join infographic
Return a list of India’s UNESCO heritage sites
AS — aliasing of column names
LEFT JOIN — returns all
...
CallbacksA callback is that you register a piece of code (almost always a function) that will run when an event occurs.
12345678<button onclick="my
...
Floyd’s Tortoise and Hare Problem141. Linked List CycleLeetcode: https://leetcode.com/problems/linked-list-cycle/description/
Solution 1:
Use fast &am
...
IntroSliding Window for Substring problem Template:https://leetcode.com/problems/find-all-anagrams-in-a-string/discuss/92007/Sliding-Window-algorithm-
...
Memory and Recursion
Understand Stack and Heap in Java: https://www.youtube.com/watch?v=450maTzSIvA
Heap: Used for dynamic allocation of memory. Onc
...
Variables
8 Primitive Variables
int width of 32-bit, [-2^32, 2^32 - 1]. After Java 7, a long integer can be written as -2_147_483_648 to be easier t
...
Target problemsDynamic Programming is targeting to solve most of the Optimization Problems.
Simple Subproblems: there should be a simple way of defin
...