#include <iostream>
using namespace std;
int main()
{
// Bitwise Operators
// Predict output of ~4
cout << (~4) << endl;
// Predict output of 8 >> 1
cout << (8 >> 1) << endl;
return 0;
}
class Solution { public int removeDuplicates ( int [] nums ) { // base case: return if array have no el. if ( nums...
No comments:
Post a Comment