members
Rust's Deref coercion
Let me add explanation later 🙃
use std::ops::Deref;
#[derive(Debug)]
struct Test {
hi: String
}
impl Deref for Test {
type Target = String;
fn deref(&self) -> &Self:…
Coding Test
members
1204. Last Person to Fit in the Bus
Last Person to Fit in the Bus - LeetCodeCan you solve this real interview question? Last Person to Fit in the Bus - Table: Queue +-------------+---------+| Column Name | Type…
French
members
프랑스어 5일차 - 공부한 것 정리
매일 적겠다고 했는데 벌써 3일이나 지나버림 ㅎㅎ...
요즘은 Easy French 채널의 재생목록 중에 하나인 Super Easy French를 주로 보고 있습니다.
말을 엄~청 천천히 해주기 때문에 공부하기가 좋습니다! 근데 설명할…
members
Leetcode - 1280. Students and Examinations
Problem
LeetCode - The World’s Leading Online Programming Learning PlatformLevel up your coding skills and quickly land a job. This is the best place to expand your knowledge and…