Skip to content

Instantly share code, notes, and snippets.

@eggplants
Created December 21, 2021 02:16
Show Gist options
  • Save eggplants/9888586db63c639dfb9568996e1de9d8 to your computer and use it in GitHub Desktop.
Save eggplants/9888586db63c639dfb9568996e1de9d8 to your computer and use it in GitHub Desktop.
回文判定 ruby
class String
def is_kaibun
(a=self)[0,_=(a.size/2).to_i]==a[-_,_*2].reverse
end
end
#=> String#is_kaibun
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment