When your password contains an asterisk.
Use the physical number keypad to the right of the display screen to enter an asterisk.
| function isAcronym(words: string[], s: string): boolean { | |
| let result = true; | |
| let offset = 0; | |
| for (let i=0; i<words.length; i++) { | |
| const word = words[i]; | |
| const letter = word[0]; | |
| if (s[offset++] !== letter) { | |
| result = false; |
| function isRectangleOverlap(rec1: number[], rec2: number[]): boolean { | |
| const [ rec1_x1, rec1_y1, rec1_x2, rec1_y2 ] = rec1; | |
| const [ rec2_x1, rec2_y1, rec2_x2, rec2_y2 ] = rec2; | |
| const isOverlapX: boolean = rec1_x1 < rec2_x2 && rec2_x1 < rec1_x2; | |
| const isOverlapY: boolean = rec1_y1 < rec2_y2 && rec2_y1 < rec1_y2; | |
| return isOverlapX && isOverlapY; | |
| }; |
| npm create vite@latest PROJECT_NAME -- --template react | |
| cd PROJECT_NAME | |
| npm install | |
| npm run dev |
| const powersOf2 = (numbers: [number]): number => { | |
| let count: number = 0; | |
| const counts = {}; | |
| const matches: [ [number] ] = []; | |
| for (let i: number = 0; i<numbers.length; i++) { | |
| const element = numbers[i]; | |
| counts[element] = counts[element] ? counts[element] + 1 : 1; | |
| for (let twoPower: number = 0; twoPower < 21; twoPower++) { |
| <script crossorigin src="https://unpkg.com/react@18/umd/react.development.js"></script> | |
| <script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"></script> | |
| <script src="https://unpkg.com/@material-ui/core/umd/material-ui.production.min.js" crossorigin="anonymous"></script> | |
| <div id="app"></div> |
| https://customer-academy.databricks.com/learn/courses/2206/databricks-fundamentals/lessons | |
| 100/100 | |
| Question 1 of 20 | |
| What percentage of global enterprises have adopted the lakehouse architecture according to the document? | |
| 50% |
| Score: 91.5/100 | |
| Questions - Page 1 of 1 | |
| Question 1 of 20 | |
| Which three things should be included as focus areas in a successful data and AI strategy? | |
| A. The future impact of data products. | |
| ** B. The people that make up data teams. |
| function romanToInt(s: string): number { | |
| let result = 0; | |
| const symbols = { | |
| 'I': 1, | |
| 'V': 5, | |
| 'X': 10, | |
| 'L': 50, | |
| 'C': 100, | |
| 'D': 500, |