About 6,880,000 results
Open links in new tab
  1. How to find all taxicab numbers less than N? - Stack Overflow

    Sep 3, 2012 · A taxicab number is an integer that can be expressed as the sum of two cubes of integers in two different ways: a^3+b^3 = c^3+d^3. Design an algorithm to find all taxicab numbers with a, b, …

  2. c - Finding taxicab Numbers - Stack Overflow

    Jul 10, 2012 · Find the first n taxicab numbers. Given a value n. I would like to find the first n taxicab numbers. A taxicab being a number that can be expressed as the sum of two perfect cubes in more …

  3. Arranging three numbers into a specified order in Python 3

    Apr 17, 2025 · All three numbers will be less than or equal to 100. The second line contains three uppercase letters 'A', 'B' and 'C' (with no spaces between them) representing the desired order. …

  4. Does Java have a class for complex numbers? - Stack Overflow

    Jun 8, 2010 · Java does not have a built-in class for complex numbers, but libraries like Apache Commons Math and JScience provide implementations.

  5. c++ - Possible ways to compress files more than 2GB size using ...

    May 12, 2023 · Microsoft published an official specification of the .CAB file format in 2008. File sizes are stored as unsigned 32-bit numbers, so technically a 4GB file is possible.

  6. Minimum and maximum length of X509 serialNumber - Stack Overflow

    May 4, 2016 · The CAB requirement has changed to minimum of 64 bit entropy. Since the leading bit in the representation for positive integers must be 0 there are a number of strategies: produce random …

  7. install cab file (Edge WebView2) via Powershell/cmd

    Apr 26, 2022 · I want to install Edge WebView2 Runtime FixedVersion with a cab file: Microsoft.WebView2.FixedVersionRuntime.100.0.1185.50.x64.cab How can I install WebView2 …

  8. Listing all permutations of a string/integer - Stack Overflow

    Apr 16, 2009 · A common task in programming interviews (not from my experience of interviews though) is to take a string or an integer and list every possible permutation. Is there an example of how this is …

  9. How do I generate all permutations of a list? - Stack Overflow

    You have n choices for the first item, n-1 for the second, and only one for the last, so you can use the digits of a number in the factorial number system as the indices. This way the numbers 0 through n! …

  10. Generate list of all possible permutations of a string

    Aug 2, 2008 · How would I go about generating a list of all possible permutations of a string between x and y characters in length, containing a variable list of characters. Any language would work, but it …