See also 📢 Dead simple tweetable JavaScript Emitter pattern module using Map (ES2015) which uses this package.
Browser compatibility (all)
Chrome* | Edge | FF | IE | Opera | Safari | iOS |
---|---|---|---|---|---|---|
38 | 12 | 13 | -* | 25 | 7.1 | 8 |
Notes:
const React = {}; | |
/** | |
* ReactElements are lightweight objects which contain information necessary to | |
* create the equivalent DOM nodes. All JSX tags are transformed into functions | |
* that return instances of this class. | |
* Note that the decision to actual create those nodes and insert them into the | |
* document hasn't been made yet: it is possible that that might never happen. | |
*/ |
See also 📢 Dead simple tweetable JavaScript Emitter pattern module using Map (ES2015) which uses this package.
Chrome* | Edge | FF | IE | Opera | Safari | iOS |
---|---|---|---|---|---|---|
38 | 12 | 13 | -* | 25 | 7.1 | 8 |
Notes:
__author__ = 'Rafeh' | |
""" | |
Program: recursive_vs_iterative | |
Description: This program contains a few common iterative functions and their solutions. More importantly, | |
it also contains their counter-part recursive functions and their solutions. This is important in visualizing | |
side by side the differences between iterative implementations and recursive implementations of a given function. | |
Notice that recursive solutions tend to be more elegant! | |
Version: 3.4 | |
""" |
/* | |
* Create an event emitter that goes like this | |
* emitter = new Emitter(); | |
* | |
* Allows you to subscribe to some event | |
* sub1 = emitter.subscribe('function_name', callback1); | |
* (you can have multiple callbacks to the same event) | |
* sub2 = emitter.subscribe('function_name', callback2); | |
* | |
* You can emit the event you want with this api |
Say you have an array for which the ith element is the price of a given stock on day i.
If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the stock), design an algorithm to find the maximum profit.
Example 1: Input: [7, 1, 5, 3, 6, 4] Output: 5
I followed the instructions in this blog post Multiple Fonts: Alternative to Operator Mono in VSCode, but did not see any changes made to VS Code. After digging a bit, I discovered that all the CSS class names had changed. They’re now e.g. .mtk13, .mtk16 { … }
.
{ "vscode_custom_css.imports": [ "file:///Users/Brian/Desktop/vscode-style.css" ] }