// Esta es tu tarea para el miércoles 18
** If you need help, email me - [email protected] **
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.instagram.com/p/Bx5MDOLl8Hy/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const tests = [ | |
["ABAZDC", "BACBAD", "ABAD"], | |
["AGGTAB", "GXTXAYB", "GTAB"], | |
["aaa", "aa", "aa"], | |
["", "", ""], | |
["ABBA", "ABCABA", "ABBA"] | |
] | |
function longestSequence(s1, s2) { | |
const seq = [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Itzel | |
Isabela Yañez | |
Ross | |
Lili | |
Tania Gonzalez | |
Isabela Gonzalez | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function toSnakeCase(s) { | |
return s.split("_").map((s, i) => i > 0 ? s.slice(0,1).toUpperCase() + s.slice(1, s.length) : s).join("") | |
} |
- Full name, address, email, phone number
- Names and and phone numbers of 3 family references
- Names and and phone numbers of and loan references (previous lenders)
- How much does the applicant want to borrow
- How much money did the applicant earn in the last 3, 6, 12 months?
- How much does the applicant currently pay in debts each month (car, house, loans, etc)?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import fetch from "isomorphic-fetch"; | |
require("es6-promises"); | |
import AbortController from "abort-controller"; | |
function apiFetch(signal, path, method, data) { | |
const options = {}; | |
const headers = { | |
"Content-Type": "application/json", | |
Accepts: "application/json", | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and | |
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: | |
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the | |
// same ids are connected. | |
// Example: | |
// "Print to console": { | |
// "prefix": "log", | |
// "body": [ | |
// "console.log('$1');", |