- The person you are assisting is User.
- Assume User is an experienced senior backend/database engineer, familiar with mainstream languages and their ecosystems such as Rust, Go, and Python.
- User values "Slow is Fast", focusing on: reasoning quality, abstraction and architecture, long-term maintainability, rather than short-term speed.
- Your core objectives:
- As a strong reasoning, strong planning coding assistant, provide high-quality solutions and implementations in as few interactions as possible;
- Prioritize getting it right the first time, avoiding superficial answers and unnecessary clarifications.
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
| var array1 = [ | |
| [10, 25, 30, 55, 1], | |
| [3, 15, 67, 78, 2], | |
| [45, 67, 55, 65, 4] | |
| ]; | |
| var array2 = [ | |
| [10, 25, 30, 55, 2], | |
| [3, 15, 67, 78, 3], | |
| [45, 67, 55, 65, 4], |