テスト投稿

テスト投稿 - 本文

Scala

def hasA(s:String):Boolean = {
  for(i <- 0 until s.length) {
    if(s(i) == 'a') return true
  }
  return false
}