#251. arrayCount9

arrayCount9

Background

Description

Given an array of ints, return the number of 9's in the array.

Format

Input

Output

Samples

[1 2 9]
1
[1 9 9]
2
[1 9 9 3 9]
3

Limitation

1s, 1024KiB for each test case.