网站首页 站内搜索

搜索结果

查询Tags标签: challenges,共有 7条记录
  • [Typescript Challenges] 7. Easy - Awaited

    If we have a type which is wrapped type like Promise. How we can get a type which is inside the wrapped type? For example: if we have Promise<ExampleType> how to get ExampleType? type ExampleType = Promise<string>type Result = MyAwaited&…

    2022/9/2 6:23:00 人评论 次浏览
  • [Typescript Challenges] 6 Easy - Exclude

    Implement the built-in Exclude<T, U> For example:type Result = MyExclude<a | b | c, a> // b | c/* _____________ Your Code Here _____________ */type MyExclude<T, U> = T extends U ? never: T/* _____________ Test Cases _____________ */…

    2022/9/2 6:22:58 人评论 次浏览
  • [Typescript Challenges] 5. Easy - Length of Tuple

    For given a tuple, you need create a generic Length, pick the length of the tuple For example: type tesla = [tesla, model 3, model X, model Y] type spaceX = [FALCON 9, FALCON HEAVY, DRAGON, STARSHIP, HUMAN SPACEFLIGHT]type teslaLength = Length<tesl…

    2022/9/2 6:22:58 人评论 次浏览
  • [Typescript Challenges] 4. Easy - First of Array

    Implement a generic First<T> that takes an Array T and returns its first elements type. type arr1 = [a, b, c] type arr2 = [3, 2, 1]type head1 = First<arr1> // expected to be a type head2 = First<arr2> // expected to be 3/* __________…

    2022/9/2 6:22:56 人评论 次浏览
  • BUUCTF:[MRCTF2020]不眠之夜

    题目来源:https://buuoj.cn/challenges#[MRCTF2020]%E4%B8%8D%E7%9C%A0%E4%B9%8B%E5%A4%9C拼图flag{Why_4re_U_5o_ShuL1an??}

    2022/1/30 6:04:43 人评论 次浏览
  • sqli-labs(58-61)-challenges-报错注入

    58 5步内获得flag-报错注入-单引号 5步内获取flag?有点太高估我的能力了吧

    2021/8/8 19:06:22 人评论 次浏览
  • sqli-labs(58-61)-challenges-报错注入

    58 5步内获得flag-报错注入-单引号 5步内获取flag?有点太高估我的能力了吧

    2021/8/8 19:06:22 人评论 次浏览
扫一扫关注最新编程教程