about | help | code help+videos | done | prefs |
public boolean sameFirstLast1(int[] nums)
public boolean sameFirstLast1(int[] nums) { boolean same = false; if (nums[0] == nums[3]) { same = true; } return same; } sameFirstLast1([1, 4, 4, 1]) → true sameFirstLast1([6, 7, 8, 6]) → true sameFirstLast1([1, 2, 3, 4]) → 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