Created
April 16, 2024 06:25
-
-
Save eghojansu/42fd9c87c4da4e5a6324eddc63f4acc9 to your computer and use it in GitHub Desktop.
Function to confirm that given sequence no jump
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// sap packplan delete purposes | |
let show = (size, min, max) => [[...Array(size)].map((_, i) => min + i).pop()].map(val => `${(val == max ? 'true' : 'false')} - ${val}`) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment