What is wrong with my logic?
This story is from 2026-09-02. It is preserved in the archive; the latest stories are on the live feed.
I'm trying to solve this question: Count Connected Friend Groups | OpenAI Coding Question This is my solution, which passes 19/23 testcases. I'm trying hard to think of the cases it can fail for, any suggestions? class Solution { class Node { int value; List next = new LinkedList (); boolean isAlon…
Read the full story at r/OpenAI ↗
Timeline · 1 report
- 2026-09-02 23:03 · r/OpenAI
What is wrong with my logic?