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
// C++ program to find difference of two large numbers. | |
#include<bits/stdc++.h> | |
using namespace std; | |
// Returns true if str1 is smaller than str2. | |
bool isSmaller(string str1, string str2) | |
{ | |
// Calculate lengths of both string | |
int n1 = str1.length(), n2 = str2.length(); | |
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
{ | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.rulers": [ | |
80 | |
], | |
"editor.fontSize": 19.6, | |
"editor.fontFamily": "Inconsolata, 'Microsoft Yahei Mono', Consolas, 'Courier New', monospace", | |
"editor.lineHeight": 24, | |
"editor.minimap.enabled": true, | |
"editor.cursorBlinking": "solid", |
NewerOlder