fix(case-003): correct hotel_checkin_id references and remove duplicate rows - #63
Open
Aneesh-Gunda wants to merge 1 commit into
Open
fix(case-003): correct hotel_checkin_id references and remove duplicate rows#63Aneesh-Gunda wants to merge 1 commit into
Aneesh-Gunda wants to merge 1 commit into
Conversation
Contributor
|
@Aneesh-Gunda-Mck is attempting to deploy a commit to the My Team Team on Vercel. A member of the Team first needs to authorize it. |
…te rows - Fix Thomas Brown's hotel_checkin_id (8→55) to link to his own check-in - Fix Gordon Mills' hotel_checkin_id (55→59) to link to his own check-in - Remove duplicate rows (id=101-200) that caused 19 false-positive hotel matches - Restores case to intended 'three suspects matched' outcome
Aneesh-Gunda
force-pushed
the
fix/case-003-hotel-checkin-data
branch
from
March 18, 2026 17:50
8607e3c to
ee2a231
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #52
What was broken
In
src/cases/schemas/case-003.ts, three data issues caused the case toproduce incorrect results:
hotel_checkin_idwas set to2instead of55,breaking the link to his Sunset Palm Resort check-in
hotel_checkin_idwas set to55(Thomas Brown's)instead of
59(his own Beach Grove Resort check-in)matches, causing
GROUP BY hotel_checkin_id HAVING count(*) > 1toreturn the wrong suspects
What was fixed
hotel_checkin_id:2→55hotel_checkin_id:55→59