gpt4 book ai didi

swift - Playgrounds "Collect, Toggle, Repeat"包含 10 个或更少的基本命令?

转载 作者:搜寻专家 更新时间:2023-10-31 22:12:20 26 4
gpt4 key购买 nike

iPad Playgrounds app ,很早的挑战:你正在学习编程,你对变量、循环等一无所知。你唯一知道的关键字是func。游戏建议您第一次构建自己的功能。

challenge start

基本上,您只会使用屏幕上显示的内容:collectGem()moveForward()name()toggleSwitch()turnLeft()turnRight()。你不会意外摔倒(所以额外的 Action 是可以接受的),目标是收集 4 颗 gem 并切换 4 个开关。

我的第一次尝试是:

challenge end

谜题解决了,但告诉我:

but you used 11 commands! Try defining your own function [...] You won't need to use as many commands

不幸的是,我不知道如何仅使用 func 关键字来使用 less 命令。可能吗? ( note that I already figured out that using loops is cheating )

此外,是否有讨论 Playgrounds 拼图的地方?

最佳答案

我不明白 Playground 的指令计数器。它不会为此提示指令数:

func bounce() {
moveForward()
collectGem()
moveForward()
toggleSwitch()
moveForward()
moveForward()
}

func btl() {
bounce()
turnLeft()
}

func b() {
btl()
btl()
}

b()
b()

也许在 Playground 中,函数调用开销是负的。停止展开那些循环!

关于swift - Playgrounds "Collect, Toggle, Repeat"包含 10 个或更少的基本命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41722084/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com