1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00

feat(challenges): add single-number

This commit is contained in:
2023-08-21 23:11:08 +02:00
parent 2386ea012d
commit c49f8e1c61
20 changed files with 74 additions and 21 deletions

View File

@ -24,15 +24,15 @@ You are given a list of `n` array definitions and your job is to figure out what
### Constraints
- 1 <= `n` <= 100
- Array names consist only of uppercase letters A to Z
- Array lengths are between 1 and 100 (no empty arrays)
- Indexing operations have at most 50 levels of nesting
- Indices are always within bounds in the test cases
- $$1 <= n <= 100$$
- Array names consist only of uppercase letters A to Z.
- Array lengths are between 1 and 100 (no empty arrays).
- Indexing operations have at most 50 levels of nesting.
- Indices are always within bounds in the test cases.
## Source
- [CodinGame](https://www.codingame.com/ide/puzzle/offset-arrays)
[CodinGame](https://www.codingame.com/ide/puzzle/offset-arrays)
## Examples