Toán học tổ hợp
II. Các dãy số và công thức quan trọng
1. Dãy Fibonaci
Dãy số Fibonaci được xác định bởi công thức sau:
{f0=0.f1=1.fi=fi−1+fi−2,với i≥2.\begin{cases}f_0 = 0.\\f_1 = 1.\\ f_i = f_{i - 1} + f_{i - 2},&\text{với }i \ge 2.\end{cases}
⎩⎪⎪⎨⎪⎪⎧f0=0.f1=1.fi=fi−1+fi−2,với i≥2.Một số phần tử đầu tiên của dãy Fibonaci là: 0,1,1,2,3,5,8,...0, 1, 1, 2, 3, 5, 8,...0,1,1,2,3,5,8,... Ngoài ra, số...
Algorithm
Viblo
Viblo Algorithm
1191
NodeJS — Make Your API Response Nicely
Hi friends, it’s been a while since write again in Medium. Let’s talk about API in NodeJS shall we?
The requirement for following this article
Very basic JavaScript.
Very basic NodeJS / ExpressJS.
Very basic API.
Tools that you must have to follow this article
1. NodeJS
The important thing is NodeJS itself, you can download in here (https://nodejs.org/en). I recommending install the LTS version, I currently used v12.2.0.
2. Postman
Postman is a powerful and friendly UI app for making an...
JavaScript
Node.js
expressJS
1992