\
  The most prestigious law school admissions discussion board in the world.
BackRefresh Options Favorite

my manager just asked me to slow down with the work coding challenges

I work for an F100 and we have these monthly coding challeng...
yooper
  11/22/25
What are the five most meaningful human relationships in you...
Amateur Millennial Butt Porn
  11/22/25
that's easy. fiancee, mom, dad, sister, nephew.
yooper
  11/22/25
Why do you suck so much at Law compared to Engineering
SneakersSO
  11/22/25
I don't suck at law, I suck at business.
yooper
  11/22/25
Get an MBA next Autumn
SneakersSO
  11/22/25
LJL
yooper
  11/22/25
You can’t do it. You’ll bomb OCI. Stay away from...
SneakersSO
  11/22/25
I have no desire to do it. I couldn't pass another college c...
yooper
  11/22/25
how do they work? how do they know people aren't using AI or...
Paralegal Jahangir
  11/22/25
most people use AI and it's encouraged. I can't poast any ex...
yooper
  11/22/25
poast something similar in scope and difficulty
Paralegal Jahangir
  11/22/25
sure. this is one from another challenge: You're the boun...
yooper
  11/22/25
I'd consider this one easy, by the way. I had the highest sc...
yooper
  11/22/25


Poast new message in this thread



Reply Favorite

Date: November 22nd, 2025 9:29 PM
Author: yooper (πŸ‡ΊπŸ‡Έ πŸ‡΅πŸ‡±)

I work for an F100 and we have these monthly coding challenges. Winner gets $100. Since being hired over a year ago, I've won every challenge except one. Taking q's.

(http://www.autoadmit.com/thread.php?thread_id=5801230&forum_id=2)#49452963)



Reply Favorite

Date: November 22nd, 2025 9:30 PM
Author: Amateur Millennial Butt Porn

What are the five most meaningful human relationships in your life?

(http://www.autoadmit.com/thread.php?thread_id=5801230&forum_id=2)#49452964)



Reply Favorite

Date: November 22nd, 2025 9:31 PM
Author: yooper (πŸ‡ΊπŸ‡Έ πŸ‡΅πŸ‡±)

that's easy. fiancee, mom, dad, sister, nephew.

(http://www.autoadmit.com/thread.php?thread_id=5801230&forum_id=2)#49452967)



Reply Favorite

Date: November 22nd, 2025 9:31 PM
Author: SneakersSO

Why do you suck so much at Law compared to Engineering

(http://www.autoadmit.com/thread.php?thread_id=5801230&forum_id=2)#49452965)



Reply Favorite

Date: November 22nd, 2025 9:31 PM
Author: yooper (πŸ‡ΊπŸ‡Έ πŸ‡΅πŸ‡±)

I don't suck at law, I suck at business.

(http://www.autoadmit.com/thread.php?thread_id=5801230&forum_id=2)#49452969)



Reply Favorite

Date: November 22nd, 2025 9:32 PM
Author: SneakersSO

Get an MBA next Autumn

(http://www.autoadmit.com/thread.php?thread_id=5801230&forum_id=2)#49452971)



Reply Favorite

Date: November 22nd, 2025 9:35 PM
Author: yooper (πŸ‡ΊπŸ‡Έ πŸ‡΅πŸ‡±)

LJL

(http://www.autoadmit.com/thread.php?thread_id=5801230&forum_id=2)#49452976)



Reply Favorite

Date: November 22nd, 2025 9:41 PM
Author: SneakersSO

You can’t do it. You’ll bomb OCI. Stay away from business, champ.

(http://www.autoadmit.com/thread.php?thread_id=5801230&forum_id=2)#49452992)



Reply Favorite

Date: November 22nd, 2025 9:43 PM
Author: yooper (πŸ‡ΊπŸ‡Έ πŸ‡΅πŸ‡±)

I have no desire to do it. I couldn't pass another college class to save my life knowing what I now know.

(http://www.autoadmit.com/thread.php?thread_id=5801230&forum_id=2)#49453001)



Reply Favorite

Date: November 22nd, 2025 9:31 PM
Author: Paralegal Jahangir

how do they work? how do they know people aren't using AI or whatever? poast an example challenge.

(http://www.autoadmit.com/thread.php?thread_id=5801230&forum_id=2)#49452966)



Reply Favorite

Date: November 22nd, 2025 9:34 PM
Author: yooper (πŸ‡ΊπŸ‡Έ πŸ‡΅πŸ‡±)

most people use AI and it's encouraged. I can't poast any examples because they're specific to my company and would out me.

(http://www.autoadmit.com/thread.php?thread_id=5801230&forum_id=2)#49452974)



Reply Favorite

Date: November 22nd, 2025 9:35 PM
Author: Paralegal Jahangir

poast something similar in scope and difficulty

(http://www.autoadmit.com/thread.php?thread_id=5801230&forum_id=2)#49452978)



Reply Favorite

Date: November 22nd, 2025 9:40 PM
Author: yooper (πŸ‡ΊπŸ‡Έ πŸ‡΅πŸ‡±)

sure. this is one from another challenge:

You're the bouncer at a night club. Your goal is to fill the venue with N=1000 people while satisfying constraints like "at least 40% Berlin locals", or "at least 80% wearing all black". People arrive one by one, and you must immediately decide whether to let them in or turn them away. Your challenge is to fill the venue with as few rejections as possible while meeting all minimum requirements. ## How it works - People arrive sequentially with binary attributes (e.g., female/male, young/old, regular/new) - You must make immediate accept/reject decisions - The game ends when either: (a) venue is full (1000 people) (b) you rejected 20,000 people

## Scenarios & Scoring There are 3 different scenarios. For each, you are given a list of constraints and statistics on the attribute distribution. You can assume, participants are sampled i.i.d., meaning the attribute distribution will not change as the night goes on. You know the overall relative frequency of each attribute and the correlation between attributes. You don't know the exact distribution. You score is the number of people you rejected before filling the venue (the less the better)."

The constraints & attribute distribution stats will be received by querying an API that produces a response in the form: { "gameId": UUID, "constraints": { "attribute": AttributeId, "minCount": number }[], "attributeStatistics": { "relativeFrequencies": { [attributeId]: number // 0.0-1.0 }, "correlations": { [attributeId1]: { [attributeId2]: number // -1.0-1.0 } } } }

(http://www.autoadmit.com/thread.php?thread_id=5801230&forum_id=2)#49452987)



Reply Favorite

Date: November 22nd, 2025 9:42 PM
Author: yooper (πŸ‡ΊπŸ‡Έ πŸ‡΅πŸ‡±)

I'd consider this one easy, by the way. I had the highest score on this challenge by using a creative convex optimization solution.

(http://www.autoadmit.com/thread.php?thread_id=5801230&forum_id=2)#49452996)