5
แผนที่หรือลดด้วยดัชนีใน Swift
มีวิธีรับดัชนีของอาร์เรย์ในmapหรือreduceใน Swift หรือไม่ ฉันกำลังมองหาบางอย่างเช่นeach_with_indexในทับทิม func lunhCheck(number : String) -> Bool { var odd = true; return reverse(number).map { String($0).toInt()! }.reduce(0) { odd = !odd return $0 + (odd ? ($1 == 9 ? 9 : ($1 * 2) % 9) : $1) } % 10 == 0 } lunhCheck("49927398716") lunhCheck("49927398717") …