3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Nimで言語処理100本ノック 00. 文字列の逆順

Posted at

ちょっと触ったNimが楽しかったので言語処理100本ノック 2015してみます。
完走するできるとは言っていない。

準備

バージョンは0.18。

↑のリンクなどから日本語訳を読んだりするが、基本公式ドキュメント(英語)を頑張って読む。

インストールは
curl https://nim-lang.org/choosenim/init.sh -sSf | sh
環境が古いとコンパイルに失敗するので、Ubuntuならapt-get update;apt-get upgradeしておく。

Nim Playground
のコンパイルが終わらないのは私だけ?

問題

言語処理100本ノック 2015#sec00

文字列"stressed"の文字を逆に(末尾から先頭に向かって)並べた文字列を得よ.

コード

nim0.nim
import unicode
const str = "stressed"
echo str
echo reversed(str)

他言語(Pythonばっかりだけど)の解答例見るにこういう方法のためのノックじゃない気がする…

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?