This file contains hidden or 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
| http://www.xaviertobin.com/ | |
| https://plus.google.com/+KevinDarty/posts/Qex6Ae6zhZW | |
| https://www.udemy.com/android-marshmallow-java-app-development-course/ | |
| https://www.udacity.com/courses/cs046 | |
| https://developer.android.com/training/index.html |
This file contains hidden or 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
| #include <iostream> | |
| #include <stack> | |
| #include <cmath> | |
| using namespace std; | |
| bool isOperator(char x) | |
| { | |
| if(x == '+' || x == '-' || x == '*' || x == '/' || x == '^') | |
| { |
This file contains hidden or 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
| 1)>> select customer_name,customer_city from customer where customer_name in (select customer_name from | |
| borrower); | |
| 2)>> select customer_name,customer_city from customer where customer_name in (select customer_name from | |
| borrower where loan_number in (select loan_number from loan where branch_name='Perryridge')); | |
This file contains hidden or 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
| #include <iostream> | |
| #include <stack> | |
| #include <cmath> | |
| using namespace std; | |
| bool isOperator(char x) | |
| { | |
| if(x == '+' || x == '-' || x == '*' || x == '/' || x == '^') | |
| { |
This file contains hidden or 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
| .model small | |
| .stack 100h | |
| .data | |
| a db ? | |
| b db ? | |
| txt1 dw 'Enter 1st input: $' | |
| txt2 dw 'Enter 2nd input: $' | |
| txt3 dw 'a: $' | |
| txt4 dw 'b: $' | |
| txt5 dw 'sum: $' |
This file contains hidden or 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
| #include <bits/stdc++.h> | |
| using namespace std; | |
| void pegPrint(stack<int> peg,char x) | |
| { | |
| cout<<"********** "<<x<<" ************"<<endl; | |
| for(; peg.empty() != true; peg.pop()) | |
| { | |
| cout<<"- "; |
This file contains hidden or 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
| #include <iostream> | |
| #include <stack> | |
| #include <cmath> | |
| #include <algorithm> | |
| using namespace std; | |
| bool isOperator(char x) | |
| { | |
| if(x == '+' || x == '-' || x == '*' || x == '/' || x == '^') |
This file contains hidden or 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
| #include <iostream> | |
| using namespace std; | |
| const int N = 10; | |
| class twinStack | |
| { | |
| int arr[10]; |
This file contains hidden or 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
| #include <iostream> | |
| using namespace std; | |
| struct ListNode | |
| { | |
| int data; | |
| ListNode *next; | |
| }; |
This file contains hidden or 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
| #include <iostream> | |
| using namespace std; | |
| struct ListNode | |
| { | |
| int data; | |
| ListNode *next; | |
| }; |