上一页 1 ··· 72 73 74 75 76 77 78 79 80 ··· 494 下一页
摘要: Write a function that takes in two strings and returns their longest common subsequence. A subsequence of a string is a set of characters that aren't 阅读全文
posted @ 2023-03-30 01:35 Zhentiw 阅读(52) 评论(0) 推荐(0)
摘要: ProductCard component import './ProductCard.css'; import { ReactNode } from 'react'; import * as React from 'react'; import ProductCardContext from '. 阅读全文
posted @ 2023-03-30 00:58 Zhentiw 阅读(25) 评论(0) 推荐(0)
摘要: .card { width: min(700px, 90%, 70vw); // take the one currently is the min height: max(300px, 90%, 40vh); // take the one currently is the max font-si 阅读全文
posted @ 2023-03-30 00:42 Zhentiw 阅读(20) 评论(0) 推荐(0)
摘要: Refer to https://dev.to/frehner/css-vh-dvh-lvh-svh-and-vw-units-27k4 he lvh, svh, and dvh units in CSS are used to specify heights relative to the vie 阅读全文
posted @ 2023-03-30 00:37 Zhentiw 阅读(54) 评论(0) 推荐(0)
摘要: const demoFunc = <TObj extends {}>(obj: TObj, key: ErrorIfNever<keyof TObj, `You much pass at least one key`>) => { return obj[key as keyof TObj] } ty 阅读全文
posted @ 2023-03-30 00:29 Zhentiw 阅读(23) 评论(0) 推荐(0)
摘要: // Initialize a 2D array with zeros const str1 = "Hello" const str2 = "World" const dp = Array.from({ length: str1.length }, () => Array.from({ length 阅读全文
posted @ 2023-03-28 14:30 Zhentiw 阅读(26) 评论(0) 推荐(0)
摘要: Problem: Levenshtein Distance Write a function that takes in two strings and returns the minimum number of edit operations that need to be performed o 阅读全文
posted @ 2023-03-28 14:27 Zhentiw 阅读(31) 评论(0) 推荐(0)
摘要: You're given a non-empty array of arrays where each subarray holds three integers and represents a disk. These integers denote each disk's width, dept 阅读全文
posted @ 2023-03-26 20:06 Zhentiw 阅读(38) 评论(0) 推荐(0)
摘要: In React, every update is split in two phases: During render, React calls your components to figure out what should be on the screen. During commit, R 阅读全文
posted @ 2023-03-20 22:03 Zhentiw 阅读(71) 评论(0) 推荐(0)
摘要: When you want a component to “remember” some information, but you don’t want that information to trigger new renders, you can use a ref. import { useR 阅读全文
posted @ 2023-03-19 03:07 Zhentiw 阅读(38) 评论(0) 推荐(0)
上一页 1 ··· 72 73 74 75 76 77 78 79 80 ··· 494 下一页