-
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950public class SearchforaRange {...
-
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse orderand ea...
-
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657import java.util.*;p...
-
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667...
-
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748import java.util.HashMap;import java.u...
-
Given a non-negative integer n, count all numbers with unique digits, x, where 0 ≤ x < 10n.
Example:
1234Input: 2Output: 9...
-
Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1’s in their bi...
-
12345678910111213141516171819202122232425262728293031import utils.ListNode;public class LinkedListCycle { /* G...
-
12345678910111213141516171819202122232425262728293031import java.util.Arrays;public class WiggleSortII { /** * Given ...
-
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667...