FrontEndCollection icon indicating copy to clipboard operation
FrontEndCollection copied to clipboard

Notes for Software Engineers on infrastructure and distributed systems. Covers common data structure and algorithms, web concepts, and more!

Results 43 FrontEndCollection issues
Sort by recently updated
recently updated
newest added

![accordionGIF](https://user-images.githubusercontent.com/37787994/132410376-1a6f9321-9335-4686-bed7-1280ae09ee77.gif) [HTML + CSS + JavaScript Code](https://github.com/cheatsheet1999/FrontEndCollection/tree/main/JS-Day/AccordionEffect)

**There are `n` gas stations along a circular route, where the amount of gas at the `ith` station is `gas[i]`.** **You have a car with an unlimited gas tank and...

### What has been deprecated, and what is new on HTML5? - HTML is not the subset of SGML (Standard Generalized Markup Language) anymore. Now, HTML5 added more functions about...

![200591630824150_ pic_hd](https://user-images.githubusercontent.com/37787994/132118032-d0b5e7a4-6e46-42ac-8a28-d1296b78677b.jpg)

**Given two integer arrays preorder and inorder where preorder is the preorder traversal of a binary tree and inorder is the inorder traversal of the same tree, construct and return...

**Given an unsorted array of integers nums, return the length of the longest consecutive elements sequence.** **You must write an algorithm that runs in O(n) time.** *** Example 1: Input:...

### Users are online When the browser finds ***manifest*** attribute on HTML head, it will request the manifest file. * #### If this is the first time visiting, * Then...

### In the perspective of content...... * Minimize HTTP requests, such as CSS sprite, inline image, and files combination. * Minimize DOM elements. ### In the aspect of server and...

**GET is used to request a specified resource from server.** *Some other notes on GET requests:* * GET have no body data * GET requests can be cached * GET...