Loading problem...
You are given a SignalReadings table with one column:
The table may contain duplicate values. A value is considered unique if it appears exactly once in the full table.
Task:
Return exactly one row with this schema:
Supported submission environments:
SignalReadings:
| reading_value |
|---------------|
| 8 |
| 8 |
| 3 |
| 3 |
| 1 |
| 4 |
| 5 |
| 6 |[{"largest_unique_value":6}]Unique values are 1, 4, 5, and 6. The largest among them is 6.
SignalReadings:
| reading_value |
|---------------|
| 8 |
| 8 |
| 7 |
| 7 |
| 3 |
| 3 |
| 3 |[{"largest_unique_value":null}]Every value appears at least twice, so no unique value exists.
SignalReadings:
| reading_value |
|---------------|
| -10 |
| -10 |
| -2 |
| 0 |
| 0 |
| 9 |
| 9 |[{"largest_unique_value":-2}]The only value that appears exactly once is -2, so it is returned.
Constraints