about | help | code help+videos | done | prefs |
public boolean inConsecutiveAscendingOrder3(int[] nums)
public boolean inConsecutiveAscendingOrder3(int[] nums) { boolean inorder = false; if (nums[0] + 1 == nums[1] && nums[1] + 1 == nums[2]) { inorder = true; } return inorder; } inConsecutiveAscendingOrder3([1, 2, 3]) → true inConsecutiveAscendingOrder3([1, 4, 3]) → false inConsecutiveAscendingOrder3([1, 2, 5]) → false ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Difficulty: 1
Copyright Nick Parlante 2017 - privacy