You may need to configure a proxy server if you're having trouble cloning
or fetching from a remote repository or getting an error
like unable to access '...' Couldn't resolve host '...'.
Consider something like:
| class FindMajority { | |
| // Returns a list of majority elements | |
| public List<Integer> majorityElement(int[] nums) { | |
| int candidate1 = -1, candidate2 = -1; | |
| int count1 = 0, count2 = 0; | |
| for (int e : nums) { | |
| if (e == candidate1) |
| ### Keybase proof | |
| I hereby claim: | |
| * I am debajitdeb11 on github. | |
| * I am debajitdeb21 (https://keybase.io/debajitdeb21) on keybase. | |
| * I have a public key ASA93dD-hKsmAP1wifH1jSL8oT-hWYKwdfs1O8KkNSSvbwo | |
| To claim this, I am signing this object: |
| module.exports = { | |
| config: { | |
| // default font size in pixels for all tabs | |
| fontSize: 12, | |
| // font family with optional fallbacks | |
| fontFamily: 'Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
| // terminal cursor background color and opacity (hex, rgb, hsl, hsv, hwb or cmyk) | |
| cursorColor: 'rgba(248,28,229,0.8)', |