So I want to calculate the Big O for this snippet of code, but I am unsure of how to approach it. Some help to get started would be appreciated.
`
for ( i = 1 ; i * i < n ; i++){
for ( j = 1 ; j < n ; j++)
{
...
}
}
for ( i = 1 ; i < n ; i++){
for ( j = i % 5 ; i + j < 2000; j++)
{
...
}
`