Skip to content

noritakaIzumi/word-games-by-golang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Word Games

以下の勉強目的で作成しています。

  • Go 言語
  • 連結リスト

必要な環境について

Go または Docker をご用意ください。

実行方法

Go を使用する場合

アプリ名これまでに実装したアプリの一覧 の項目名を参照してください。

cd /path/to/word_games
go run cmd/main.go アプリ名

Docker を使用する場合

cd /path/to/word_games
./build/run_app.sh アプリ名

開発する方へ

コードを書き始める前に /doc 配下の資料をお読みください。 新しいアプリの開発が終了したら、下記 これまでに実装したアプリの一覧 に追記してください。

これまでに実装したアプリの一覧

is_palindrome

単語や文字列が左右対称かどうかを判断します。

$ go run cmd/main.go is_palindrome
Please enter some word: pop
The word "pop" is palindrome!

get_common_ending

2 つの単語に共通する語尾を取得します。

$ go run cmd/main.go get_common_ending
Please enter first word: common
Please enter second word: salmon
The word "common" and the word "salmon" have the common ending "mon".

About

連結リストを用いた単語ゲームなどを実装しています。 実装には Go 言語を使用しています。

Resources

License

Stars

1 star

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors