视频加载失败

沙盒

406 字
2 分钟
沙盒

The result of [1, 2, 3].join('-') is '1-2-3'.

Lift(LL) can be determined by Lift Coefficient (CLC_L) like the following equation.

L=12ρv2SCLL = \frac{1}{2} \rho v^2 S C_L
fib.ex
defmodule Solution do
@spec is_palindrome(x :: integer) :: boolean
def is_palindrome(x) when x < 0, do: false
def is_palindrome(x), do: do_is_palindrome(x, get_base_10(x, 1))
defp do_is_palindrome(x, b10) when b10 > 1,
do: get_first_digit(x, b10) == rem(x, 10) and do_is_palindrome(div(x, 10), div(b10, 100))
defp do_is_palindrome(_, _), do: true
defp get_first_digit(n, b10), do: div(n, b10) |> rem(10)
defp get_base_10(n, b10) when n >= b10, do: get_base_10(n, b10 * 10)
defp get_base_10(n, b10), do: div(b10, 10)
end
@startuml
Alice -> Bob: Hello
Bob --> Alice: Hi
@enduml

简单7课,帮助你快速学会Teambition的基本操作。

我们需要一位熟悉JavaScript、HTML5,至少理解一种框架(如Backbone.js、AngularJS、React等)的前端开发者。

foo1

Footnotes#

  1. bar

文章分享

如果这篇文章对你有帮助,欢迎分享给更多人!

沙盒
https://dringsim.pages.dev/posts/sandbox/
作者
dringsim
发布于
2026-08-25
许可协议
CC BY-NC-SA 4.0
Profile Image of the Author
dringsim
Hello, I'm dringsim.
分类
标签
最新动态
站点统计
文章
14
分类
3
标签
19
总字数
16,622
运行时长
0
最后活动
0 天前
站点信息
构建平台
Cloudflare Pages
博客版本
Firefly v6.16.5
文章许可
CC BY-NC-SA 4.0