题解 | #牛牛的特殊数游戏#
牛牛的特殊数游戏
https://www.nowcoder.com/practice/f2512f68edf94e9b83a37b2b858de645
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param n int整型 * @return string字符串一维数组 */ public String[] specialNumber (int n) { // write code here List<String> resultL = new ArrayList<>(); for (int i=1; i <= n; i++){ String toAdd = ""; if (i%3 == 0){ toAdd = "Now"; } if (i%5 == 0){ toAdd += "coder"; } if (toAdd.equals("")){ resultL.add(String.valueOf(i)); continue; } resultL.add(toAdd); } String[] result = resultL.toArray(new String[resultL.size()]); return result; } }