about | help | code help+videos | done | prefs |
Write a method that accepts three integer parameters a, b, and c. Return 'true' if those three integers are in strictly increasing order. For example, (5, 20, 4000) are in strictly increasing order, but (60, 60, 100) are NOT in strictly increasing order. In the second example, they are still in increasing order, just not in STRICTLY increasing order, which does not allow for the values to match. Look at the test data for more examples. test2024_09_19_APP1SLHL_increasing(5, 7, 12) → true test2024_09_19_APP1SLHL_increasing(9, 3, 20) → false test2024_09_19_APP1SLHL_increasing(100, 100, 105) → 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: 210
Copyright Nick Parlante 2017 - privacy