I have seen number ranges represented as [first1,last1) and [first2,last2).
I would like to know what such a notation means.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A bracket –
[or]– means that end of the range is inclusive — it includes the element listed. A parenthesis –(or)– means that end is exclusive and doesn’t contain the listed element. So for[first1, last1), the range starts withfirst1(and includes it), but ends just beforelast1.Assuming integers: