Build complete products end-to-end
This is for you if:
- You want to launch real apps (and maybe make money)
- You like owning everything: UI → API → DB → deploy
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Styled Tables Showcase</title> | |
| <style> | |
| body { | |
| font-family: |
Extend the existing to-do application to support multiple todo lists. Users should be able to create and manage separate lists, each with its own set of todo items.
Your task is to extend the functionality of the generatePattern(style, dimensions) function to support a new pattern type: hollow-diamond.
For this assignment, the style parameter will be "hollow-diamond", and the dimensions parameter will be an array containing a single number [size] where:
size specifies the width and height of the diamond (both are the same).size:Your task is to extend the functionality of the generatePattern(style, dimensions) function to support a new pattern type: diamond.
For this assignment, the style parameter will be "diamond", and the dimensions parameter will be an array containing a single number [size] where:
size specifies the width and height of the diamond (both are the same).size:Your task is to extend the functionality of the generatePattern(style, dimensions) function to support a new pattern type: right-aligned-triangle.
For this assignment, the style parameter will be "right-aligned-triangle", and the dimensions parameter will be an array containing a single number [size] where:
size specifies the number of rows in the triangle.* characters are preceded by spaces ( ) to align them to the right edge of the triangle.