🔗 vinbhaskara.github.io
📍 Montréal, Canada 🇨🇦
Diary of Anne Frank
January 13, 1943
Diary of Anne Frank
January 13, 1943
i.e., transpose(T(x)) * g(x) * T(x) = Identity matrix; for all x.
i.e., transpose(T(x)) * g(x) * T(x) = Identity matrix; for all x.
Want to find out which clinical trials are ongoing for a drug you take?
Curious about the sample size, inclusion criteria, or outcomes for a condition affecting someone you know?
👇 (🧵 1/3)
Want to find out which clinical trials are ongoing for a drug you take?
Curious about the sample size, inclusion criteria, or outcomes for a condition affecting someone you know?
👇 (🧵 1/3)
This was the largest political gathering in Denver since Obama in 2008.
Also bigger than the 2024 DNC.
And the largest ever rally in Bernie’s career (and obviously, mine too).
This was the largest political gathering in Denver since Obama in 2008.
Also bigger than the 2024 DNC.
And the largest ever rally in Bernie’s career (and obviously, mine too).
> a = [[]] * 5
> print(a)
[[], [], [], [], []]
> a[0].append(1)
> print(a)
[[1], [1], [1], [1], [1]]
# instead use list comprehension for expected result:
> a = [[] for i in range(5)]
> a[0].append(1)
> print(a)
[[1], [], [], [], []]
> a = [[]] * 5
> print(a)
[[], [], [], [], []]
> a[0].append(1)
> print(a)
[[1], [1], [1], [1], [1]]
# instead use list comprehension for expected result:
> a = [[] for i in range(5)]
> a[0].append(1)
> print(a)
[[1], [], [], [], []]