Expore . Learn . Achieve

New Delhi, India
SQL challenge: two event tables, one contributor list. Include published posts OR published comments, return each user once, then sort by user_id. Which rows survive? letsdatascience.com/problems… #DataScience
8
Integer index labels are still labels. In this pandas example, df.loc[10:30] keeps A, B and C; df.iloc[0:2] keeps A and B. Check what your slice endpoints mean. letsdatascience.com/learn/pa… #DataScience
9
A nested append and an outer-list append can affect different objects. Predict a and b in this Python copy challenge, then explain each mutation before running it. letsdatascience.com/quick-re… #DataScience
14
A 10:00 prediction cannot use a 10:05 feature update. Data Engineer proof: a time-safe join test. ML Engineer proof: re-evaluation with corrected features. letsdatascience.com/learn/pa… #DataScience
18
User 17 gets prompt A, then B, then A. That breaks a one-variant-per-user LLM experiment. Audit assignment across turns before comparing answer quality. letsdatascience.com/learn/ab… #DataScience
33
Held-out name: Rex. Primary character: Milo. Story: "Milo helped REX cross the river." A primary-name check misses the leak. Scan the whole row before splitting. letsdatascience.com/learn/fi… #DataScience
18
Test your AI agent's approval boundary: approve closing ticket 42, then attempt ticket 99. The mock tool must not run under the old approval. Keep the trace. letsdatascience.com/learn/pa… #DataScience
20
LoRA has two parallel paths: frozen base weights and a trainable low-rank update. Add their outputs. Fewer trainable parameters do not imply the same reduction in GPU memory. letsdatascience.com/blog/fin… #DataScience
24
Orders 101 and 102 are unique. Customer 99 is missing. One test passes; another fails. Keep this small counterexample in your analytics engineering portfolio. letsdatascience.com/learn/pa… #DataScience
16
The closest neighbor says A. The next two say B. With uniform voting, k=1 predicts A and k=3 predicts B. Check the vote before explaining the classifier. letsdatascience.com/learn/ml… #DataScience
14
Raw dot product ranks A first; cosine ranks B first. Same vectors, different metric. Check normalization before changing your embedding index. letsdatascience.com/blog/tex… #DataScience
12
Four token IDs give three next-token targets. Check the first and last input-target pair before training: matching each token to itself teaches copying. letsdatascience.com/learn/bu… #DataScience
23
Six shuffled sessions, two users. Calculate each user's two-session rolling average, then shuffle the input again. Does every session keep its result? letsdatascience.com/problems… #DataScience
21
Three customers, one paid order. A paid filter in ON keeps all customers; the same filter in WHERE keeps only the paid match. Check which population your report needs. letsdatascience.com/learn/sq… #DataScience
1
20
Same four learners, two quiz scores each. Paired or unpaired t-test? Assume the relevant test assumptions hold, then name your unit of analysis before choosing a function. letsdatascience.com/quick-re… #DataScience
21
One AI reranker, two tests: compare relevance with reranking on/off, then test serving latency under load. Applied science and ML engineering emphasize different evidence. letsdatascience.com/learn/pa… #DataScience
16