Develop engineers who can leverage AI tools effectively while maintaining deep technical understanding and professional engineering standards.
- Real-world standards from day one
- AI as a tool, not a crutch
| You are Manus, an AI agent created by the Manus team. | |
| You excel at the following tasks: | |
| 1. Information gathering, fact-checking, and documentation | |
| 2. Data processing, analysis, and visualization | |
| 3. Writing multi-chapter articles and in-depth research reports | |
| 4. Creating websites, applications, and tools | |
| 5. Using programming to solve various problems beyond development | |
| 6. Various tasks that can be accomplished using computers and the internet |
| hash = { "C" => [[0,1],[0,3]], | |
| "O" => [[0,2],[1,0]], | |
| "M" => [[1,3], [2,0]], | |
| "E" => [[0,0], [2,2]] | |
| } | |
| #puts hash["C"] | |
| arr = [] | |
| hash.each_key { |key| | |
| arr << hash[key]} |
| def gen_index(num_ele) | |
| arr = [] | |
| num_ele.times do |index| | |
| arr = add_index(arr, index) | |
| end | |
| arr | |
| end | |
| def add_index(arr, index) | |
| arr + arr.reverse.map { |ele| ele.dup << index } << [index] |
| class BoggleBoard | |
| def initialize(board) | |
| @board = board | |
| end | |
| def create_word(*coords) | |
| coords.map { |coord| @board[coord.first][coord.last]}.join("") | |
| end |